@capgo/capacitor-autofill-save-password 8.0.9 → 8.0.10
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
|
@@ -17,6 +17,17 @@ IOS work for old versions and 18.3
|
|
|
17
17
|
|
|
18
18
|
The most complete doc is available here: https://capgo.app/docs/plugins/autofill-save-password/
|
|
19
19
|
|
|
20
|
+
## Compatibility
|
|
21
|
+
|
|
22
|
+
| Plugin version | Capacitor compatibility | Maintained |
|
|
23
|
+
| -------------- | ----------------------- | ---------- |
|
|
24
|
+
| v8.\*.\* | v8.\*.\* | ✅ |
|
|
25
|
+
| v7.\*.\* | v7.\*.\* | On demand |
|
|
26
|
+
| v6.\*.\* | v6.\*.\* | ❌ |
|
|
27
|
+
| v5.\*.\* | v5.\*.\* | ❌ |
|
|
28
|
+
|
|
29
|
+
> **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.
|
|
30
|
+
|
|
20
31
|
## Install
|
|
21
32
|
|
|
22
33
|
```bash
|
|
@@ -28,7 +28,7 @@ import java.util.Map;
|
|
|
28
28
|
@CapacitorPlugin(name = "SavePassword")
|
|
29
29
|
public class SavePasswordPlugin extends Plugin {
|
|
30
30
|
|
|
31
|
-
private final String pluginVersion = "8.0.
|
|
31
|
+
private final String pluginVersion = "8.0.10";
|
|
32
32
|
private static final String TAG = "CredentialManager";
|
|
33
33
|
private CredentialManager credentialManager;
|
|
34
34
|
private Map<String, PendingGetCredentialRequest> pendingRequestsByElementId = new HashMap<>();
|
|
@@ -9,7 +9,7 @@ import AuthenticationServices
|
|
|
9
9
|
*/
|
|
10
10
|
@objc(SavePasswordPlugin)
|
|
11
11
|
public class SavePasswordPlugin: CAPPlugin, CAPBridgedPlugin, ASAuthorizationControllerDelegate, ASAuthorizationControllerPresentationContextProviding {
|
|
12
|
-
private let pluginVersion: String = "8.0.
|
|
12
|
+
private let pluginVersion: String = "8.0.10"
|
|
13
13
|
public let identifier = "SavePasswordPlugin"
|
|
14
14
|
|
|
15
15
|
public let jsName = "SavePassword"
|
package/package.json
CHANGED