metamap-capacitor-plugin 4.6.2 → 4.7.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/android/build.gradle +3 -8
- package/ios/Podfile +1 -1
- package/ios/Podfile.lock +6 -6
- package/ios/Pods/Local Podspecs/Capacitor.podspec.json +31 -0
- package/ios/Pods/Local Podspecs/CapacitorCordova.podspec.json +29 -0
- package/ios/Pods/Manifest.lock +22 -0
- package/ios/Pods/Pods.xcodeproj/project.pbxproj +1442 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/avo.xcuserdatad/xcschemes/Capacitor.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/avo.xcuserdatad/xcschemes/CapacitorCordova.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/avo.xcuserdatad/xcschemes/Pods-Plugin.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/avo.xcuserdatad/xcschemes/Pods-PluginTests.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/avo.xcuserdatad/xcschemes/xcschememanagement.plist +31 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-Info.plist +26 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-dummy.m +5 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-prefix.pch +12 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.debug.xcconfig +16 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.modulemap +8 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.release.xcconfig +16 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist +26 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-dummy.m +5 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch +12 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.debug.xcconfig +13 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.modulemap +6 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.release.xcconfig +13 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist +26 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.markdown +53 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.plist +91 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-dummy.m +5 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-umbrella.h +16 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.debug.xcconfig +15 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.modulemap +6 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.release.xcconfig +15 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist +26 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.markdown +53 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.plist +91 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-dummy.m +5 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-frameworks.sh +188 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-umbrella.h +16 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.debug.xcconfig +16 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap +6 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.release.xcconfig +16 -0
- package/package.json +6 -6
package/android/build.gradle
CHANGED
|
@@ -6,22 +6,19 @@ ext {
|
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
buildscript {
|
|
9
|
-
ext.kotlin_version = '1.9.0'
|
|
10
9
|
repositories {
|
|
11
10
|
google()
|
|
12
11
|
mavenCentral()
|
|
13
|
-
maven { url "https://jitpack.io" }
|
|
14
12
|
}
|
|
15
13
|
dependencies {
|
|
16
|
-
classpath 'com.android.tools.build:gradle:8.
|
|
17
|
-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0"
|
|
14
|
+
classpath 'com.android.tools.build:gradle:8.0.0'
|
|
18
15
|
}
|
|
19
16
|
}
|
|
20
17
|
|
|
21
18
|
apply plugin: 'com.android.library'
|
|
22
19
|
|
|
23
20
|
android {
|
|
24
|
-
compileSdkVersion
|
|
21
|
+
compileSdkVersion 33
|
|
25
22
|
defaultConfig {
|
|
26
23
|
minSdkVersion 22
|
|
27
24
|
targetSdkVersion 33
|
|
@@ -47,7 +44,6 @@ android {
|
|
|
47
44
|
repositories {
|
|
48
45
|
google()
|
|
49
46
|
mavenCentral()
|
|
50
|
-
maven { url "https://jitpack.io" }
|
|
51
47
|
}
|
|
52
48
|
|
|
53
49
|
|
|
@@ -55,8 +51,7 @@ dependencies {
|
|
|
55
51
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
56
52
|
implementation project(':capacitor-android')
|
|
57
53
|
implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
|
|
58
|
-
implementation ('com.metamap:android-sdk:3.
|
|
59
|
-
exclude group: "com.airbnb.android", module: "lottie-compose"}
|
|
54
|
+
implementation ('com.metamap:android-sdk:3.38.0')
|
|
60
55
|
}
|
|
61
56
|
|
|
62
57
|
|
package/ios/Podfile
CHANGED
package/ios/Podfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PODS:
|
|
2
|
-
- Capacitor (
|
|
2
|
+
- Capacitor (6.2.0):
|
|
3
3
|
- CapacitorCordova
|
|
4
|
-
- CapacitorCordova (
|
|
4
|
+
- CapacitorCordova (6.2.0)
|
|
5
5
|
|
|
6
6
|
DEPENDENCIES:
|
|
7
7
|
- "Capacitor (from `../node_modules/@capacitor/ios`)"
|
|
@@ -14,9 +14,9 @@ EXTERNAL SOURCES:
|
|
|
14
14
|
:path: "../node_modules/@capacitor/ios"
|
|
15
15
|
|
|
16
16
|
SPEC CHECKSUMS:
|
|
17
|
-
Capacitor:
|
|
18
|
-
CapacitorCordova:
|
|
17
|
+
Capacitor: 1f3c7b9802d958cd8c4eb63895fff85dff2e1eea
|
|
18
|
+
CapacitorCordova: b33e7f4aa4ed105dd43283acdd940964374a87d9
|
|
19
19
|
|
|
20
|
-
PODFILE CHECKSUM:
|
|
20
|
+
PODFILE CHECKSUM: 1b382eb890df4541f132ff1284fe7bd27ab630ee
|
|
21
21
|
|
|
22
|
-
COCOAPODS: 1.
|
|
22
|
+
COCOAPODS: 1.16.2
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Capacitor",
|
|
3
|
+
"version": "6.2.0",
|
|
4
|
+
"summary": "Capacitor for iOS",
|
|
5
|
+
"social_media_url": "https://twitter.com/capacitorjs",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"homepage": "https://capacitorjs.com/",
|
|
8
|
+
"platforms": {
|
|
9
|
+
"ios": "13.0"
|
|
10
|
+
},
|
|
11
|
+
"authors": {
|
|
12
|
+
"Ionic Team": "hi@ionicframework.com"
|
|
13
|
+
},
|
|
14
|
+
"source": {
|
|
15
|
+
"git": "https://github.com/ionic-team/capacitor.git",
|
|
16
|
+
"tag": "6.2.0"
|
|
17
|
+
},
|
|
18
|
+
"source_files": "Capacitor/Capacitor/**/*.{swift,h,m}",
|
|
19
|
+
"module_map": "Capacitor/Capacitor/Capacitor.modulemap",
|
|
20
|
+
"resources": [
|
|
21
|
+
"Capacitor/Capacitor/assets/native-bridge.js",
|
|
22
|
+
"Capacitor/Capacitor/PrivacyInfo.xcprivacy"
|
|
23
|
+
],
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"CapacitorCordova": [
|
|
26
|
+
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"swift_versions": "5.1",
|
|
30
|
+
"swift_version": "5.1"
|
|
31
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "CapacitorCordova",
|
|
3
|
+
"module_name": "Cordova",
|
|
4
|
+
"version": "6.2.0",
|
|
5
|
+
"summary": "Capacitor Cordova Compatibility Layer",
|
|
6
|
+
"homepage": "https://capacitorjs.com",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"authors": {
|
|
9
|
+
"Ionic Team": "hi@ionicframework.com"
|
|
10
|
+
},
|
|
11
|
+
"source": {
|
|
12
|
+
"git": "https://github.com/ionic-team/capacitor",
|
|
13
|
+
"tag": "6.2.0"
|
|
14
|
+
},
|
|
15
|
+
"platforms": {
|
|
16
|
+
"ios": "13.0"
|
|
17
|
+
},
|
|
18
|
+
"source_files": "CapacitorCordova/CapacitorCordova/**/*.{h,m}",
|
|
19
|
+
"public_header_files": [
|
|
20
|
+
"CapacitorCordova/CapacitorCordova/Classes/Public/*.h",
|
|
21
|
+
"CapacitorCordova/CapacitorCordova/CapacitorCordova.h"
|
|
22
|
+
],
|
|
23
|
+
"module_map": "CapacitorCordova/CapacitorCordova/CapacitorCordova.modulemap",
|
|
24
|
+
"resources": [
|
|
25
|
+
"CapacitorCordova/CapacitorCordova/PrivacyInfo.xcprivacy"
|
|
26
|
+
],
|
|
27
|
+
"requires_arc": true,
|
|
28
|
+
"frameworks": "WebKit"
|
|
29
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
PODS:
|
|
2
|
+
- Capacitor (6.2.0):
|
|
3
|
+
- CapacitorCordova
|
|
4
|
+
- CapacitorCordova (6.2.0)
|
|
5
|
+
|
|
6
|
+
DEPENDENCIES:
|
|
7
|
+
- "Capacitor (from `../node_modules/@capacitor/ios`)"
|
|
8
|
+
- "CapacitorCordova (from `../node_modules/@capacitor/ios`)"
|
|
9
|
+
|
|
10
|
+
EXTERNAL SOURCES:
|
|
11
|
+
Capacitor:
|
|
12
|
+
:path: "../node_modules/@capacitor/ios"
|
|
13
|
+
CapacitorCordova:
|
|
14
|
+
:path: "../node_modules/@capacitor/ios"
|
|
15
|
+
|
|
16
|
+
SPEC CHECKSUMS:
|
|
17
|
+
Capacitor: 1f3c7b9802d958cd8c4eb63895fff85dff2e1eea
|
|
18
|
+
CapacitorCordova: b33e7f4aa4ed105dd43283acdd940964374a87d9
|
|
19
|
+
|
|
20
|
+
PODFILE CHECKSUM: 1b382eb890df4541f132ff1284fe7bd27ab630ee
|
|
21
|
+
|
|
22
|
+
COCOAPODS: 1.16.2
|