Skip to content

Commit dfaff6a

Browse files
chore: update Gradle configuration
- match minimum SDK version to Flutter's minimum - migrate compileSdkVersion to compileSdk - update compileSdk to Flutter's target Signed-off-by: The one with the braid <info@braid.business>
1 parent 3152537 commit dfaff6a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

sqlcipher_flutter_libs/android/build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
}
99

1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:8.0.1'
11+
classpath 'com.android.tools.build:gradle:8.5.1'
1212
}
1313
}
1414

@@ -22,15 +22,14 @@ rootProject.allprojects {
2222
apply plugin: 'com.android.library'
2323

2424
android {
25-
compileSdkVersion 28
26-
2725
// Conditional for compatibility with AGP <4.2.
2826
if (project.android.hasProperty("namespace")) {
2927
namespace 'eu.simonbinder.sqlite3_flutter_libs'
3028
}
3129

3230
defaultConfig {
33-
minSdkVersion 16
31+
minSdkVersion 21
32+
compileSdk 34
3433
}
3534
lintOptions {
3635
disable 'InvalidPackage'

0 commit comments

Comments
 (0)