metamap-capacitor-plugin 4.7.2 → 4.7.4

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.
@@ -9,12 +9,21 @@ Pod::Spec.new do |s|
9
9
  s.license = package['license']
10
10
  s.homepage = package['repository']['url']
11
11
  s.author = package['author']
12
- # s.source = { :git => package['repository']['url'], :tag => s.version.to_s }
13
- s.source = { :path => '.' }
14
- s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
15
- s.ios.deployment_target = '13.0'
12
+ s.source = { :path => '.' } # Local path for the plugin's source
13
+ s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}' # Source files for Capacitor plugin
14
+
15
+ # Minimum iOS version for compatibility
16
+ s.ios.deployment_target = '13.0'
17
+
18
+ # Capacitor dependency
16
19
  s.dependency 'Capacitor'
17
- s.static_framework = true
20
+
21
+ # MetaMapSDK dependency, which brings in Incode SDK
18
22
  s.dependency 'MetaMapSDK', '3.22.4'
23
+
24
+ # Use static framework to support dependencies like Incode SDK
25
+ s.static_framework = true
26
+
27
+ # Swift version
19
28
  s.swift_version = '5.1'
20
29
  end
@@ -0,0 +1,14 @@
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>
package/ios/Podfile CHANGED
@@ -7,6 +7,7 @@ def capacitor_pods
7
7
  use_frameworks!
8
8
  pod 'Capacitor', :path => '../node_modules/@capacitor/ios'
9
9
  pod 'CapacitorCordova', :path => '../node_modules/@capacitor/ios'
10
+
10
11
  end
11
12
 
12
13
  target 'Plugin' do
package/ios/Podfile.lock CHANGED
@@ -17,6 +17,6 @@ SPEC CHECKSUMS:
17
17
  Capacitor: 1f3c7b9802d958cd8c4eb63895fff85dff2e1eea
18
18
  CapacitorCordova: b33e7f4aa4ed105dd43283acdd940964374a87d9
19
19
 
20
- PODFILE CHECKSUM: 1b382eb890df4541f132ff1284fe7bd27ab630ee
20
+ PODFILE CHECKSUM: eaec2ee844c3a452e9235fe3ca7ce78b9dc9fbeb
21
21
 
22
22
  COCOAPODS: 1.16.2
@@ -17,6 +17,6 @@ SPEC CHECKSUMS:
17
17
  Capacitor: 1f3c7b9802d958cd8c4eb63895fff85dff2e1eea
18
18
  CapacitorCordova: b33e7f4aa4ed105dd43283acdd940964374a87d9
19
19
 
20
- PODFILE CHECKSUM: 1b382eb890df4541f132ff1284fe7bd27ab630ee
20
+ PODFILE CHECKSUM: eaec2ee844c3a452e9235fe3ca7ce78b9dc9fbeb
21
21
 
22
22
  COCOAPODS: 1.16.2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "metamap-capacitor-plugin",
3
- "version": "4.7.2",
3
+ "version": "4.7.4",
4
4
  "description": "Capacitor plugin for MetaMapSDK",
5
5
  "main": "dist/plugin.js",
6
6
  "module": "dist/esm/index.js",