Skip to content

Commit dd6ea73

Browse files
build: update Android SDK versions
- Update compile SDK version to 36 and build tools version to "36.0.0" - Change min SDK version to 21 and target SDK version to 36 in the Android build configuration - Update compile SDK version to 36 and target SDK version to 36 in the example app build.gradle file
1 parent c6769e6 commit dd6ea73

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ rootProject.allprojects {
2424

2525

2626
ext {
27-
compile_sdk_version = 35
28-
build_tools_version = "35.0.0"
27+
compile_sdk_version = 36
28+
build_tools_version = "36.0.0"
2929
min_sdk_version = 21
30-
target_sdk_version = 35
30+
target_sdk_version = 36
3131
}
3232

3333
android {

example/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if (flutterVersionName == null) {
2525

2626
android {
2727
namespace "com.optimizely.optimizely_flutter_sdk_example"
28-
compileSdkVersion 35
28+
compileSdkVersion 36
2929

3030
compileOptions {
3131
sourceCompatibility JavaVersion.VERSION_1_8
@@ -38,7 +38,7 @@ android {
3838
// You can update the following values to match your application needs.
3939
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
4040
minSdkVersion flutter.minSdkVersion
41-
targetSdkVersion 35
41+
targetSdkVersion 36
4242
versionCode flutterVersionCode.toInteger()
4343
versionName flutterVersionName
4444
}

0 commit comments

Comments
 (0)