Fix android payment logical error
getting sku detail runs only if mod != 0 which means querying 20*n will not get sku details. referenced from https://github.com/googlesamples/android-play-billing/blob/master/TrivialDrive/app/src/main/java/com/example/android/trivialdrivesample/util/IabHelper.java#L1029-L1062
This commit is contained in:
parent
21bf3778d5
commit
d4ef6216d3
@ -355,7 +355,7 @@ public class PaymentsManager {
|
||||
tempList.add(s);
|
||||
}
|
||||
packs.add(tempList);
|
||||
|
||||
}
|
||||
for (ArrayList<String> skuPartList : packs) {
|
||||
Bundle querySkus = new Bundle();
|
||||
querySkus.putStringArrayList("ITEM_ID_LIST", skuPartList);
|
||||
@ -385,7 +385,6 @@ public class PaymentsManager {
|
||||
}
|
||||
godotPaymentV3.completeSkuDetail();
|
||||
}
|
||||
}
|
||||
})).start();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user