Beispiel #1
0
 public void startBilling()
 {
     ConfigureStoreKitEvents();
     EasyStoreKit.AssignIdentifiers(productIdentifiers);
     if (Application.internetReachability != NetworkReachability.NotReachable)
     {
         if (EasyStoreKit.CanMakePayments())
         {
             //nullify previously loaded products
             this.products = null;
             EasyStoreKit.LoadProducts();
         }
         else
         {
             //				message = "Application is not allowed to make payments!";
         }
     }
 }