Esempio n. 1
0
		public void onRestoreTransactionsResponse(RestoreTransactions request, Consts.ResponseCode responseCode)
		{
			Toast.MakeText(m_activity, string.Format("Restore response code: {0}", responseCode.ToString()), ToastLength.Long).Show();
		}
Esempio n. 2
0
		public void onPurchaseStateChange(Consts.PurchaseState purchaseState, string itemId, int quantity, long purchaseTime, string developerPayload) //bool fromBackgroundTHread = false)
		{
			m_activity.RunOnUiThread(() =>
				{
					Toast.MakeText(m_activity, string.Format("PurchaseState: {0}", purchaseState.ToString()), ToastLength.Long).Show();
				});
		}