metamap-capacitor-plugin 4.7.4 → 4.7.6
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/android/build.gradle +10 -3
- package/package.json +1 -1
- package/ios/Plugin.xcodeproj/xcuserdata/avo.xcuserdatad/xcschemes/xcschememanagement.plist +0 -14
- package/ios/Plugin.xcworkspace/xcuserdata/avo.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/Pods/Local Podspecs/Capacitor.podspec.json +0 -31
- package/ios/Pods/Local Podspecs/CapacitorCordova.podspec.json +0 -29
- package/ios/Pods/Manifest.lock +0 -22
- package/ios/Pods/Pods.xcodeproj/project.pbxproj +0 -1442
- package/ios/Pods/Pods.xcodeproj/xcuserdata/avo.xcuserdatad/xcschemes/Capacitor.xcscheme +0 -58
- package/ios/Pods/Pods.xcodeproj/xcuserdata/avo.xcuserdatad/xcschemes/CapacitorCordova.xcscheme +0 -58
- package/ios/Pods/Pods.xcodeproj/xcuserdata/avo.xcuserdatad/xcschemes/Pods-Plugin.xcscheme +0 -58
- package/ios/Pods/Pods.xcodeproj/xcuserdata/avo.xcuserdatad/xcschemes/Pods-PluginTests.xcscheme +0 -58
- package/ios/Pods/Pods.xcodeproj/xcuserdata/avo.xcuserdatad/xcschemes/xcschememanagement.plist +0 -31
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-Info.plist +0 -26
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-dummy.m +0 -5
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-prefix.pch +0 -12
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.debug.xcconfig +0 -16
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.modulemap +0 -8
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.release.xcconfig +0 -16
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist +0 -26
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-dummy.m +0 -5
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch +0 -12
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.debug.xcconfig +0 -13
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.modulemap +0 -6
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.release.xcconfig +0 -13
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist +0 -26
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.markdown +0 -53
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.plist +0 -91
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-dummy.m +0 -5
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-umbrella.h +0 -16
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.debug.xcconfig +0 -15
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.modulemap +0 -6
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.release.xcconfig +0 -15
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist +0 -26
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.markdown +0 -53
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.plist +0 -91
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-dummy.m +0 -5
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-frameworks.sh +0 -188
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-umbrella.h +0 -16
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.debug.xcconfig +0 -16
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap +0 -6
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.release.xcconfig +0 -16
package/android/build.gradle
CHANGED
|
@@ -9,16 +9,18 @@ buildscript {
|
|
|
9
9
|
repositories {
|
|
10
10
|
google()
|
|
11
11
|
mavenCentral()
|
|
12
|
+
maven { url "https://jitpack.io" }
|
|
12
13
|
}
|
|
13
14
|
dependencies {
|
|
14
|
-
classpath 'com.android.tools.build:gradle:8.
|
|
15
|
+
classpath 'com.android.tools.build:gradle:8.3.0'
|
|
16
|
+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0"
|
|
15
17
|
}
|
|
16
18
|
}
|
|
17
19
|
|
|
18
20
|
apply plugin: 'com.android.library'
|
|
19
21
|
|
|
20
22
|
android {
|
|
21
|
-
compileSdkVersion
|
|
23
|
+
compileSdkVersion 34
|
|
22
24
|
defaultConfig {
|
|
23
25
|
minSdkVersion 22
|
|
24
26
|
targetSdkVersion 33
|
|
@@ -44,6 +46,7 @@ android {
|
|
|
44
46
|
repositories {
|
|
45
47
|
google()
|
|
46
48
|
mavenCentral()
|
|
49
|
+
maven { url "https://jitpack.io" }
|
|
47
50
|
}
|
|
48
51
|
|
|
49
52
|
|
|
@@ -51,7 +54,11 @@ dependencies {
|
|
|
51
54
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
52
55
|
implementation project(':capacitor-android')
|
|
53
56
|
implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
|
|
54
|
-
implementation ('com.metamap:android-sdk:3.
|
|
57
|
+
implementation ('com.metamap:android-sdk:3.42.4') {
|
|
58
|
+
exclude group: "com.airbnb.android", module: "lottie-compose"
|
|
59
|
+
exclude group: "org.jetbrains.compose.runtime", module: "runtime-android"
|
|
60
|
+
exclude group: "org.jetbrains.compose.runtime", module: "runtime-desktop"
|
|
61
|
+
}
|
|
55
62
|
}
|
|
56
63
|
|
|
57
64
|
|
package/package.json
CHANGED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
-
<plist version="1.0">
|
|
4
|
-
<dict>
|
|
5
|
-
<key>SchemeUserState</key>
|
|
6
|
-
<dict>
|
|
7
|
-
<key>Plugin.xcscheme_^#shared#^_</key>
|
|
8
|
-
<dict>
|
|
9
|
-
<key>orderHint</key>
|
|
10
|
-
<integer>6</integer>
|
|
11
|
-
</dict>
|
|
12
|
-
</dict>
|
|
13
|
-
</dict>
|
|
14
|
-
</plist>
|
|
Binary file
|
|
@@ -1,31 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
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
|
-
}
|
package/ios/Pods/Manifest.lock
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
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: eaec2ee844c3a452e9235fe3ca7ce78b9dc9fbeb
|
|
21
|
-
|
|
22
|
-
COCOAPODS: 1.16.2
|