Skip to content

Commit 7f3d01b

Browse files
committed
fix: upgraded example app to 34
1 parent 27eb1af commit 7f3d01b

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ apply plugin: 'kotlin-android'
2626
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
2727

2828
android {
29-
compileSdkVersion 31
29+
compileSdkVersion 34
3030

3131
compileOptions {
3232
sourceCompatibility JavaVersion.VERSION_1_8

example/android/build.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@ allprojects {
3030
}
3131

3232
rootProject.buildDir = '../build'
33+
subprojects { subproject ->
34+
afterEvaluate {
35+
android {
36+
compileSdkVersion 34
37+
}
38+
}
39+
}
3340
subprojects {
3441
project.buildDir = "${rootProject.buildDir}/${project.name}"
3542
project.evaluationDependsOn(':app')

0 commit comments

Comments
 (0)