@capgo/native-purchases 8.0.18 → 8.0.20

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
@@ -28,6 +28,17 @@ Perfect for apps monetizing through one-time purchases or recurring subscription
28
28
 
29
29
  The most complete doc is available here: https://capgo.app/docs/plugins/native-purchases/
30
30
 
31
+ ## Compatibility
32
+
33
+ | Plugin version | Capacitor compatibility | Maintained |
34
+ | -------------- | ----------------------- | ---------- |
35
+ | v8.\*.\* | v8.\*.\* | ✅ |
36
+ | v7.\*.\* | v7.\*.\* | On demand |
37
+ | v6.\*.\* | v6.\*.\* | ❌ |
38
+ | v5.\*.\* | v5.\*.\* | ❌ |
39
+
40
+ > **Note:** The major version of this plugin follows the major version of Capacitor. Use the version that matches your Capacitor installation (e.g., plugin v8 for Capacitor 8). Only the latest major version is actively maintained.
41
+
31
42
  ## Install
32
43
 
33
44
  ```bash
@@ -42,7 +42,7 @@ import org.json.JSONArray;
42
42
  @CapacitorPlugin(name = "NativePurchases")
43
43
  public class NativePurchasesPlugin extends Plugin {
44
44
 
45
- private final String pluginVersion = "8.0.18";
45
+ private final String pluginVersion = "8.0.20";
46
46
  public static final String TAG = "NativePurchases";
47
47
  private static final Phaser semaphoreReady = new Phaser(1);
48
48
  private BillingClient billingClient;
@@ -20,7 +20,7 @@ public class NativePurchasesPlugin: CAPPlugin, CAPBridgedPlugin {
20
20
  CAPPluginMethod(name: "isEntitledToOldBusinessModel", returnType: CAPPluginReturnPromise)
21
21
  ]
22
22
 
23
- private let pluginVersion: String = "8.0.18"
23
+ private let pluginVersion: String = "8.0.20"
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": "8.0.18",
3
+ "version": "8.0.20",
4
4
  "description": "In-app Subscriptions Made Easy",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",