Skip to content

Commit

Permalink
fix(device_info_plus): Revert bump compileSDK to 34 (#2230)
Browse files Browse the repository at this point in the history
  • Loading branch information
vbuberen committed Oct 7, 2023
1 parent 147a6dd commit 2ba5b05
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 34
compileSdkVersion 33

namespace 'dev.fluttercommunity.plus.device_info'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,17 @@ apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
compileSdkVersion 34
compileSdkVersion 33

namespace 'io.flutter.plugins.deviceinfoexample.example'

compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

kotlinOptions {
jvmTarget = '1.8'
}

sourceSets {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ subprojects {
project.evaluationDependsOn(':app')
}

task clean(type: Delete) {
tasks.register("clean", Delete) {
delete rootProject.buildDir
}

0 comments on commit 2ba5b05

Please sign in to comment.