@capgo/inappbrowser 8.1.10 → 8.1.11
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
|
@@ -26,6 +26,17 @@ Perfect for OAuth flows, embedded web apps, video calls, and any scenario requir
|
|
|
26
26
|
|
|
27
27
|
The most complete doc is available here: https://capgo.app/docs/plugins/inappbrowser/
|
|
28
28
|
|
|
29
|
+
## Compatibility
|
|
30
|
+
|
|
31
|
+
| Plugin version | Capacitor compatibility | Maintained |
|
|
32
|
+
| -------------- | ----------------------- | ---------- |
|
|
33
|
+
| v8.\*.\* | v8.\*.\* | ✅ |
|
|
34
|
+
| v7.\*.\* | v7.\*.\* | On demand |
|
|
35
|
+
| v6.\*.\* | v6.\*.\* | ❌ |
|
|
36
|
+
| v5.\*.\* | v5.\*.\* | ❌ |
|
|
37
|
+
|
|
38
|
+
> **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.
|
|
39
|
+
|
|
29
40
|
## Install
|
|
30
41
|
|
|
31
42
|
```bash
|
|
@@ -50,7 +50,7 @@ import org.json.JSONObject;
|
|
|
50
50
|
)
|
|
51
51
|
public class InAppBrowserPlugin extends Plugin implements WebViewDialog.PermissionHandler {
|
|
52
52
|
|
|
53
|
-
private final String pluginVersion = "8.1.
|
|
53
|
+
private final String pluginVersion = "8.1.11";
|
|
54
54
|
|
|
55
55
|
public static final String CUSTOM_TAB_PACKAGE_NAME = "com.android.chrome"; // Change when in stable
|
|
56
56
|
private CustomTabsClient customTabsClient;
|
|
@@ -28,7 +28,7 @@ public class InAppBrowserPlugin: CAPPlugin, CAPBridgedPlugin {
|
|
|
28
28
|
case aware = "AWARE"
|
|
29
29
|
case fakeVisible = "FAKE_VISIBLE"
|
|
30
30
|
}
|
|
31
|
-
private let pluginVersion: String = "8.1.
|
|
31
|
+
private let pluginVersion: String = "8.1.11"
|
|
32
32
|
public let identifier = "InAppBrowserPlugin"
|
|
33
33
|
public let jsName = "InAppBrowser"
|
|
34
34
|
public let pluginMethods: [CAPPluginMethod] = [
|