metamap-capacitor-plugin 4.2.0 → 4.3.0
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/MetamapCapacitorPlugin.podspec +1 -1
- package/README.md +0 -1
- package/android/build.gradle +1 -1
- package/ios/Plugin/Plugin.swift +0 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,4 +3,3 @@
|
|
|
3
3
|
The MetaMap for Ionic Capacitor usage guide and changelog can be found in the following locations:
|
|
4
4
|
|
|
5
5
|
* [Usage guide](https://github.com/GetMetaMap/metamap-capacitor-plugin/blob/main/docs/metaMap-capacitor.md)
|
|
6
|
-
* [Changelog](https://github.com/GetMetaMap/metamap-capacitor-plugin/blob/main/docs/metamap-capacitor-changelog.md)
|
package/android/build.gradle
CHANGED
|
@@ -51,7 +51,7 @@ dependencies {
|
|
|
51
51
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
52
52
|
implementation project(':capacitor-android')
|
|
53
53
|
implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
|
|
54
|
-
implementation ('com.metamap:android-sdk:3.
|
|
54
|
+
implementation ('com.metamap:android-sdk:3.32.0')
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
|
package/ios/Plugin/Plugin.swift
CHANGED
|
@@ -17,8 +17,6 @@ public class MetaMapCapacitorPlugin: CAPPlugin {
|
|
|
17
17
|
metadata["sdk_type"] = "capacitor"
|
|
18
18
|
MetaMap.shared.showMetaMapFlow(clientId: call.getString("clientId") ?? "",
|
|
19
19
|
flowId: call.getString("flowId") ?? "",
|
|
20
|
-
configurationId: call.getString("configurationId"),
|
|
21
|
-
encryptionConfigurationId: call.getString("encryptionConfigurationId"),
|
|
22
20
|
metadata: metadata)
|
|
23
21
|
MetaMapButtonResult.shared.delegate = self
|
|
24
22
|
self.output = call
|