mirror of
https://github.com/stan220/godot-docs.git
synced 2026-09-08 19:29:06 +00:00
Changes: tutorials/platform/android/android_in_app_purchases.rst
Replacing the DEPRECATED getSku method with getProducts.
The author of the module made changes, but did not specify them in
the documentation.
Now instead of signals:
sku_details_query_completed
sku_details_query_error
Need using:
product_details_query_completed
product_details_query_error
Now the purchase list is in:
purchase.products
Single item:
dictionary.put("sku", skus.get(0)); # Not available in plugin
Not avaible.
Oginal plugin code:
https://github.com/godotengine/godot-google-play-billing/blob/billing-v5/godot-google-play-billing/src/main/java/org/godotengine/godot/plugin/googleplaybilling/GodotGooglePlayBilling.java