@capgo/native-purchases 7.9.2 → 7.9.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -10,6 +10,10 @@
10
10
 
11
11
  This plugin allows you to implement in-app purchases and subscriptions in your Capacitor app using native APIs.
12
12
 
13
+ ## Documentation
14
+
15
+ The most complete doc is available here: https://capgo.app/docs/plugins/native-purchases/
16
+
13
17
  ## Install
14
18
 
15
19
  ```bash
@@ -38,7 +42,7 @@ Add this to manifest
38
42
 
39
43
  ### Testing with Google Play Console
40
44
 
41
- > 📖 **[Complete Android Testing Guide](./docs/Android_TESTING_GUIDE.md)** - Comprehensive guide covering Internal Testing, License Testing, and Internal App Sharing methods with step-by-step instructions, troubleshooting, and best practices.
45
+ > 📖 **[Complete Android Testing Guide](./docs/ANDROID_TESTING_GUIDE.md)** - Comprehensive guide covering Internal Testing, License Testing, and Internal App Sharing methods with step-by-step instructions, troubleshooting, and best practices.
42
46
 
43
47
  For testing in-app purchases on Android:
44
48
 
@@ -39,7 +39,7 @@ import org.json.JSONArray;
39
39
  @CapacitorPlugin(name = "NativePurchases")
40
40
  public class NativePurchasesPlugin extends Plugin {
41
41
 
42
- private final String PLUGIN_VERSION = "7.9.2";
42
+ private final String PLUGIN_VERSION = "7.9.4";
43
43
  public static final String TAG = "NativePurchases";
44
44
  private static final Phaser semaphoreReady = new Phaser(1);
45
45
  private BillingClient billingClient;
@@ -20,7 +20,7 @@ public class NativePurchasesPlugin: CAPPlugin, CAPBridgedPlugin {
20
20
  CAPPluginMethod(name: "getPurchases", returnType: CAPPluginReturnPromise)
21
21
  ]
22
22
 
23
- private let PLUGIN_VERSION: String = "7.9.2"
23
+ private let PLUGIN_VERSION: String = "7.9.4"
24
24
  private var transactionUpdatesTask: Task<Void, Never>?
25
25
 
26
26
  @objc func getPluginVersion(_ call: CAPPluginCall) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/native-purchases",
3
- "version": "7.9.2",
3
+ "version": "7.9.4",
4
4
  "description": "In-app Subscriptions Made Easy",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",