metamap-capacitor-plugin 4.6.0 → 4.6.2

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.
@@ -13,6 +13,7 @@ Pod::Spec.new do |s|
13
13
  s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
14
14
  s.ios.deployment_target = '13.0'
15
15
  s.dependency 'Capacitor'
16
- s.dependency 'MetaMapSDK', '3.18.0'
16
+ s.static_framework = true
17
+ s.dependency 'MetaMapSDK', "3.22.3"
17
18
  s.swift_version = '5.1'
18
19
  end
@@ -6,19 +6,22 @@ ext {
6
6
  }
7
7
 
8
8
  buildscript {
9
+ ext.kotlin_version = '1.9.0'
9
10
  repositories {
10
11
  google()
11
12
  mavenCentral()
13
+ maven { url "https://jitpack.io" }
12
14
  }
13
15
  dependencies {
14
- classpath 'com.android.tools.build:gradle:8.0.0'
16
+ classpath 'com.android.tools.build:gradle:8.3.0'
17
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0"
15
18
  }
16
19
  }
17
20
 
18
21
  apply plugin: 'com.android.library'
19
22
 
20
23
  android {
21
- compileSdkVersion 33
24
+ compileSdkVersion 34
22
25
  defaultConfig {
23
26
  minSdkVersion 22
24
27
  targetSdkVersion 33
@@ -44,6 +47,7 @@ android {
44
47
  repositories {
45
48
  google()
46
49
  mavenCentral()
50
+ maven { url "https://jitpack.io" }
47
51
  }
48
52
 
49
53
 
@@ -51,7 +55,8 @@ dependencies {
51
55
  implementation fileTree(dir: 'libs', include: ['*.jar'])
52
56
  implementation project(':capacitor-android')
53
57
  implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
54
- implementation ('com.metamap:android-sdk:3.38.0')
58
+ implementation ('com.metamap:android-sdk:3.42.3') {
59
+ exclude group: "com.airbnb.android", module: "lottie-compose"}
55
60
  }
56
61
 
57
62
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "metamap-capacitor-plugin",
3
- "version": "4.6.0",
3
+ "version": "4.6.2",
4
4
  "description": "Capacitor plugin for MetaMapSDK",
5
5
  "main": "dist/plugin.js",
6
6
  "module": "dist/esm/index.js",
@@ -20,10 +20,10 @@
20
20
  "author": "Avo Sukiasyan",
21
21
  "license": "MIT",
22
22
  "devDependencies": {
23
- "@capacitor/android": "^6.0.0",
24
- "@capacitor/cli": "^6.0.0",
25
- "@capacitor/core": "^6.0.0",
26
- "@capacitor/ios": "^6.0.0",
23
+ "@capacitor/android": "^6.2.0",
24
+ "@capacitor/cli": "^6.2.0",
25
+ "@capacitor/core": "^6.2.0",
26
+ "@capacitor/ios": "^6.2.0",
27
27
  "@ionic/prettier-config": "^2.0.0",
28
28
  "@ionic/swiftlint-config": "^1.1.2",
29
29
  "@rollup/plugin-node-resolve": "^13.0.6",
@@ -32,10 +32,10 @@
32
32
  "rimraf": "^3.0.0",
33
33
  "rollup": "^2.21.0",
34
34
  "swiftlint": "^1.0.1",
35
- "typescript": "~4.6.4"
35
+ "typescript": "^5.7.2"
36
36
  },
37
37
  "peerDependencies": {
38
- "@capacitor/core": "^6.1.2"
38
+ "@capacitor/core": "^6.2.0"
39
39
  },
40
40
  "files": [
41
41
  "dist/",
@@ -65,10 +65,5 @@
65
65
  "bugs": {
66
66
  "url": "https://github.com/GetMetaMap/mati-capacitor-plugin/issues"
67
67
  },
68
- "homepage": "https://github.com/GetMetaMap/mati-capacitor-plugin/blob/main/docs/mati-capacitor.md",
69
- "dependencies": {
70
- "@capacitor/app": "^6.0.0",
71
- "@capacitor/haptics": "^6.0.0",
72
- "@capacitor/keyboard": "^6.0.0"
73
- }
74
- }
68
+ "homepage": "https://github.com/GetMetaMap/mati-capacitor-plugin/blob/main/docs/mati-capacitor.md"
69
+ }