Skip to content

Commit

Permalink
updated version to 4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AvoSukiasyan90 committed Nov 13, 2024
1 parent ba5c15b commit 0e6efe7
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 15 deletions.
15 changes: 9 additions & 6 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,31 @@ group 'com.getmati.metamap_plugin_flutter'
version '1.0.1'

buildscript {
ext.kotlin_version = '1.6.21'
ext.kotlin_version = '1.9.0'
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21"
classpath 'com.android.tools.build:gradle:8.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0"
}
}

rootProject.allprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 31
compileSdkVersion 34
namespace "com.getmati.metamap_plugin_flutte"

sourceSets {
Expand All @@ -37,5 +39,6 @@ android {

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation ('com.metamap:android-sdk:3.41.2')
}
implementation ('com.metamap:android-sdk:3.42.1') {
exclude group: "com.airbnb.android", module: "lottie-compose"}
}
2 changes: 1 addition & 1 deletion android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
2 changes: 1 addition & 1 deletion doc/metaMap-flutter.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ hidden: true

| LTS version (Recommended for most users): | Current Version(Latest features) |
|-------------------------------------------|----------------------------------|
| 4.3.5 | 4.3.5 |
| 4.4.0 | 4.4.0 |



Expand Down
10 changes: 6 additions & 4 deletions ios/metamap_plugin_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'metamap_plugin_flutter'
s.version = '4.1.2'
s.version = '4.3.9'
s.summary = 'Flutter plugin for Mati SDK'
s.description = <<-DESC
Flutter plugin for Mati SDK
Expand All @@ -15,8 +15,10 @@ Flutter plugin for Mati SDK
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.dependency 'Flutter'
s.platform = :ios, '12'
s.dependency 'MetaMapSDK', "3.20.1"
s.platform = :ios, '13'
s.static_framework = true
s.dependency 'MetaMapSDK', "3.22.1"
s.vendored_frameworks = ["IncdOnboarding.xcframework", "opencv2.xcframework"]
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.swift_version = '5.0'
s.swift_version = '5.0'
end
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: metamap_plugin_flutter
description: Flutter plugin for Mati SDK.

version: 4.3.5
version: 4.4.0
homepage: 'https://github.com/GetMati/mati-flutter-plugin'

environment:
sdk: ">=2.12.0 <3.0.0"
flutter: ">=2.2.0"
sdk: ">=2.17.0 <4.0.0"
flutter: ">=3.0.0"

dependencies:
flutter:
Expand Down

0 comments on commit 0e6efe7

Please sign in to comment.