File tree Expand file tree Collapse file tree 8 files changed +14
-36
lines changed
packages/android_intent_plus Expand file tree Collapse file tree 8 files changed +14
-36
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ This plugin allows Flutter apps to launch arbitrary intents when the platform is
18
18
19
19
- Flutter >=3.12.0
20
20
- Dart >=3.1.0 <4.0.0
21
- - Android ` compileSDK ` 34
22
21
- Java 17
23
- - Android Gradle Plugin >=8.3.0
24
- - Gradle wrapper >=8.4
22
+ - Kotlin 2.2.0
23
+ - Android Gradle Plugin >=8.12.1
24
+ - Gradle wrapper >=8.13
25
25
26
26
## Usage
27
27
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ buildscript {
8
8
}
9
9
10
10
dependencies {
11
- classpath ' com.android.tools.build:gradle:8.3 .1'
11
+ classpath ' com.android.tools.build:gradle:8.12 .1'
12
12
}
13
13
}
14
14
@@ -22,9 +22,8 @@ rootProject.allprojects {
22
22
apply plugin : ' com.android.library'
23
23
24
24
android {
25
- compileSdk 34
26
-
27
25
namespace ' dev.fluttercommunity.plus.androidintent'
26
+ compileSdk = flutter. compileSdkVersion
28
27
29
28
defaultConfig {
30
29
minSdk 19
@@ -46,7 +45,7 @@ android {
46
45
}
47
46
48
47
dependencies {
49
- implementation ' androidx.annotation:annotation:1.8.2 '
48
+ implementation ' androidx.annotation:annotation:1.9.1 '
50
49
testImplementation ' junit:junit:4.13.2'
51
50
testImplementation ' org.mockito:mockito-core:5.13.0'
52
51
testImplementation ' androidx.test:core:1.6.1'
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -23,9 +23,8 @@ if (flutterVersionName == null) {
23
23
}
24
24
25
25
android {
26
- compileSdk 34
27
-
28
26
namespace ' io.flutter.plugins.androidintentexample'
27
+ compileSdk = flutter. compileSdkVersion
29
28
30
29
compileOptions {
31
30
sourceCompatibility JavaVersion . VERSION_17
@@ -38,9 +37,8 @@ android {
38
37
39
38
defaultConfig {
40
39
applicationId " io.flutter.plugins.androidintentexample"
41
- minSdk 21
42
- targetSdk 34
43
- multiDexEnabled true
40
+ minSdk flutter. minSdkVersion
41
+ targetSdk flutter. targetSdkVersion
44
42
45
43
versionCode flutterVersionCode. toInteger()
46
44
versionName flutterVersionName
@@ -61,15 +59,6 @@ flutter {
61
59
}
62
60
63
61
dependencies {
64
- constraints {
65
- implementation(" org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22" ) {
66
- because(" kotlin-stdlib-jdk7 is now a part of kotlin-stdlib" )
67
- }
68
- implementation(" org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22" ) {
69
- because(" kotlin-stdlib-jdk8 is now a part of kotlin-stdlib" )
70
- }
71
- }
72
- implementation ' androidx.multidex:multidex:2.0.1'
73
62
implementation ' androidx.core:core-ktx:1.13.1'
74
63
testImplementation ' junit:junit:4.13.2'
75
64
androidTestImplementation ' androidx.test:runner:1.6.1'
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# Sun Oct 02 17:46:54 EEST 2022
2
2
distributionBase =GRADLE_USER_HOME
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.4 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.13 -bin.zip
4
4
distributionPath =wrapper/dists
5
5
zipStorePath =wrapper/dists
6
6
zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ pluginManagement {
18
18
19
19
plugins {
20
20
id " dev.flutter.flutter-plugin-loader" version " 1.0.0"
21
- id " com.android.application" version " 8.3 .1" apply false
22
- id " org.jetbrains.kotlin.android" version " 1.7.22 " apply false
21
+ id " com.android.application" version " 8.12 .1" apply false
22
+ id " org.jetbrains.kotlin.android" version " 2.2.0 " apply false
23
23
}
24
24
25
25
include " :app"
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ name: android_intent_plus_example
2
2
description : Demonstrates how to use the android_intent plugin.
3
3
4
4
environment :
5
- sdk : " >=2.18 .0 <4.0.0"
6
- flutter : " >=3.3 .0"
5
+ sdk : " >=3.1 .0 <4.0.0"
6
+ flutter : " >=3.12 .0"
7
7
8
8
dependencies :
9
9
flutter :
You can’t perform that action at this time.
0 commit comments