File tree 6 files changed +19
-20
lines changed
plugin/android_using_plugin
prebuilt_module/android_using_prebuilt_module
6 files changed +19
-20
lines changed Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ apply plugin: 'com.android.application'
3
3
apply plugin : ' kotlin-android'
4
4
5
5
android {
6
- compileSdk 34
6
+ compileSdk 35
7
7
defaultConfig {
8
8
applicationId " dev.flutter.example.androidusingplugin"
9
9
minSdkVersion 21
10
- targetSdk 34
10
+ targetSdk 35
11
11
versionCode 1
12
12
versionName " 1.0"
13
13
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
@@ -17,28 +17,27 @@ android {
17
17
minifyEnabled false
18
18
}
19
19
}
20
- // Remove when #flutter/flutter/issues/150955 is merged to stable.
21
- lintOptions {
22
- checkReleaseBuilds false
23
- }
24
20
// Keep java and kotlin versions in sync.
25
21
compileOptions {
26
- sourceCompatibility 1.8
27
- targetCompatibility 1.8
22
+ sourceCompatibility 17
23
+ targetCompatibility 17
28
24
}
29
25
kotlinOptions {
30
- jvmTarget = ' 1.8 '
26
+ jvmTarget = ' 17 '
31
27
}
32
28
33
29
namespace ' dev.flutter.example.androidusingplugin'
30
+ lint {
31
+ checkReleaseBuilds false
32
+ }
34
33
}
35
34
36
35
dependencies {
37
36
implementation project(' :flutter' )
38
37
implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
39
38
implementation ' androidx.appcompat:appcompat:1.7.0'
40
- implementation ' androidx.core:core-ktx:1.13.1 '
41
- implementation ' androidx.constraintlayout:constraintlayout:2.1.4 '
39
+ implementation ' androidx.core:core-ktx:1.15.0 '
40
+ implementation ' androidx.constraintlayout:constraintlayout:2.2.0 '
42
41
testImplementation ' junit:junit:4.13.2'
43
42
androidTestImplementation ' androidx.test.ext:junit:1.2.1'
44
43
androidTestImplementation ' androidx.test.espresso:espresso-core:3.6.1'
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ buildscript {
7
7
mavenCentral()
8
8
}
9
9
dependencies {
10
- classpath ' com.android.tools.build:gradle:8.3.2 '
10
+ classpath ' com.android.tools.build:gradle:8.8.1 '
11
11
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
12
12
// NOTE: Do not place your application dependencies here; they belong
13
13
// in the individual module build.gradle files
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.6 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.11.1 -bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ apply plugin: 'com.android.application'
3
3
apply plugin : ' kotlin-android'
4
4
5
5
android {
6
- compileSdk 34
6
+ compileSdk 35
7
7
defaultConfig {
8
8
applicationId " dev.flutter.example.androidusingprebuiltmodule"
9
9
minSdkVersion 21
10
- targetSdkVersion 34
10
+ targetSdkVersion 35
11
11
versionCode 1
12
12
versionName " 1.0"
13
13
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
@@ -19,11 +19,11 @@ android {
19
19
}
20
20
}
21
21
compileOptions {
22
- sourceCompatibility 1.8
23
- targetCompatibility 1.8
22
+ sourceCompatibility 17
23
+ targetCompatibility 17
24
24
}
25
25
kotlinOptions {
26
- jvmTarget = ' 1.8 '
26
+ jvmTarget = ' 17 '
27
27
}
28
28
namespace ' dev.flutter.example.androidusingprebuiltmodule'
29
29
}
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ buildscript {
7
7
mavenCentral()
8
8
}
9
9
dependencies {
10
- classpath ' com.android.tools.build:gradle:8.3.2 '
10
+ classpath ' com.android.tools.build:gradle:8.8.1 '
11
11
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
12
12
// NOTE: Do not place your application dependencies here; they belong
13
13
// in the individual module build.gradle files
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.6 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.11.1 -bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments