示例#1
0
 public void AndroidPurchaseVerification()
 {
     LootLockerSDKManager.AndroidPurchaseVerification(purchase_token, int.Parse(asset_id), (response) =>
     {
         if (response.success)
         {
             labelText = "Successful verified purchase" + response.text;
         }
         else
         {
             labelText = "failed to verify purchase : " + response.Error;
         }
     });
 }