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.
Files changed (43) hide show
  1. package/MetamapCapacitorPlugin.podspec +1 -1
  2. package/android/build.gradle +3 -8
  3. package/ios/Podfile +1 -1
  4. package/ios/Podfile.lock +6 -6
  5. package/ios/Pods/Local Podspecs/Capacitor.podspec.json +31 -0
  6. package/ios/Pods/Local Podspecs/CapacitorCordova.podspec.json +29 -0
  7. package/ios/Pods/Manifest.lock +22 -0
  8. package/ios/Pods/Pods.xcodeproj/project.pbxproj +1442 -0
  9. package/ios/Pods/Pods.xcodeproj/xcuserdata/avo.xcuserdatad/xcschemes/Capacitor.xcscheme +58 -0
  10. package/ios/Pods/Pods.xcodeproj/xcuserdata/avo.xcuserdatad/xcschemes/CapacitorCordova.xcscheme +58 -0
  11. package/ios/Pods/Pods.xcodeproj/xcuserdata/avo.xcuserdatad/xcschemes/Pods-Plugin.xcscheme +58 -0
  12. package/ios/Pods/Pods.xcodeproj/xcuserdata/avo.xcuserdatad/xcschemes/Pods-PluginTests.xcscheme +58 -0
  13. package/ios/Pods/Pods.xcodeproj/xcuserdata/avo.xcuserdatad/xcschemes/xcschememanagement.plist +31 -0
  14. package/ios/Pods/Target Support Files/Capacitor/Capacitor-Info.plist +26 -0
  15. package/ios/Pods/Target Support Files/Capacitor/Capacitor-dummy.m +5 -0
  16. package/ios/Pods/Target Support Files/Capacitor/Capacitor-prefix.pch +12 -0
  17. package/ios/Pods/Target Support Files/Capacitor/Capacitor.debug.xcconfig +16 -0
  18. package/ios/Pods/Target Support Files/Capacitor/Capacitor.modulemap +8 -0
  19. package/ios/Pods/Target Support Files/Capacitor/Capacitor.release.xcconfig +16 -0
  20. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist +26 -0
  21. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-dummy.m +5 -0
  22. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch +12 -0
  23. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.debug.xcconfig +13 -0
  24. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.modulemap +6 -0
  25. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.release.xcconfig +13 -0
  26. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist +26 -0
  27. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.markdown +53 -0
  28. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.plist +91 -0
  29. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-dummy.m +5 -0
  30. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-umbrella.h +16 -0
  31. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.debug.xcconfig +15 -0
  32. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.modulemap +6 -0
  33. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.release.xcconfig +15 -0
  34. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist +26 -0
  35. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.markdown +53 -0
  36. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.plist +91 -0
  37. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-dummy.m +5 -0
  38. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-frameworks.sh +188 -0
  39. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-umbrella.h +16 -0
  40. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.debug.xcconfig +16 -0
  41. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap +6 -0
  42. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.release.xcconfig +16 -0
  43. package/package.json +6 -6
@@ -14,6 +14,6 @@ Pod::Spec.new do |s|
14
14
  s.ios.deployment_target = '13.0'
15
15
  s.dependency 'Capacitor'
16
16
  s.static_framework = true
17
- s.dependency 'MetaMapSDK', "3.22.3"
17
+ s.dependency 'MetaMapSDK', "3.22.4"
18
18
  s.swift_version = '5.1'
19
19
  end
@@ -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.3.0'
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 34
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.42.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
@@ -1,4 +1,4 @@
1
- require_relative '../../node_modules/@capacitor/ios/scripts/pods_helpers'
1
+ require_relative '../node_modules/@capacitor/ios/scripts/pods_helpers.rb'
2
2
 
3
3
  platform :ios, '13.0'
4
4
 
package/ios/Podfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PODS:
2
- - Capacitor (4.4.0):
2
+ - Capacitor (6.2.0):
3
3
  - CapacitorCordova
4
- - CapacitorCordova (4.4.0)
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: 868367fcfeb3ba6bfabaefc63c072e6478bd046d
18
- CapacitorCordova: 0c0b4edc7ce94fd560eadc3a6d36d5ee6453ada6
17
+ Capacitor: 1f3c7b9802d958cd8c4eb63895fff85dff2e1eea
18
+ CapacitorCordova: b33e7f4aa4ed105dd43283acdd940964374a87d9
19
19
 
20
- PODFILE CHECKSUM: 14e8b2400457751b865e1c327e7cfa1c6fa67da6
20
+ PODFILE CHECKSUM: 1b382eb890df4541f132ff1284fe7bd27ab630ee
21
21
 
22
- COCOAPODS: 1.11.3
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