@capgo/capacitor-android-age-signals 8.1.7 → 8.1.8

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
@@ -25,6 +25,17 @@ Critical for apps targeting families, children, and teens who need age-gate func
25
25
 
26
26
  Authoritative docs live inside this repo for now. Explore the TypeScript definitions in `src/definitions.ts` and the Android implementation under `android/` for platform behavior. Run the included example app for an end-to-end walkthrough.
27
27
 
28
+ ## Compatibility
29
+
30
+ | Plugin version | Capacitor compatibility | Maintained |
31
+ | -------------- | ----------------------- | ---------- |
32
+ | v8.\*.\* | v8.\*.\* | ✅ |
33
+ | v7.\*.\* | v7.\*.\* | On demand |
34
+ | v6.\*.\* | v6.\*.\* | ❌ |
35
+ | v5.\*.\* | v5.\*.\* | ❌ |
36
+
37
+ > **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.
38
+
28
39
  ## Install
29
40
 
30
41
  ```bash
@@ -15,7 +15,7 @@ import com.getcapacitor.annotation.CapacitorPlugin;
15
15
  @CapacitorPlugin(name = "AgeSignals")
16
16
  public class AgeSignalsPlugin extends Plugin {
17
17
 
18
- private final String pluginVersion = "8.1.7";
18
+ private final String pluginVersion = "8.1.8";
19
19
  public static final String TAG = "AgeSignals";
20
20
  private static final String ERROR_UNKNOWN = "An unknown error occurred.";
21
21
 
@@ -7,7 +7,7 @@ import Capacitor
7
7
  */
8
8
  @objc(AgeSignalsPlugin)
9
9
  public class AgeSignalsPlugin: CAPPlugin, CAPBridgedPlugin {
10
- private let pluginVersion: String = "8.1.7"
10
+ private let pluginVersion: String = "8.1.8"
11
11
  public let identifier = "AgeSignalsPlugin"
12
12
  public let jsName = "AgeSignals"
13
13
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-android-age-signals",
3
- "version": "8.1.7",
3
+ "version": "8.1.8",
4
4
  "description": "Capacitor plugin that exposes Google Play Age Signals to your app.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",