Skip to content

Commit

Permalink
Revert "updated java version"
Browse files Browse the repository at this point in the history
This reverts commit ee74985.
  • Loading branch information
TheNoumanDev committed Feb 6, 2025
1 parent ee74985 commit b1c23e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions starter/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,16 @@ android {
ndkVersion flutter.ndkVersion

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

buildFeatures {
buildConfig true
}

kotlinOptions {
jvmTarget = '17'
jvmTarget = '1.8'
}

sourceSets {
Expand Down
2 changes: 1 addition & 1 deletion starter/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ subprojects {
Integer pluginCompileSdk = project.android.compileSdk
if (pluginCompileSdk != null && pluginCompileSdk < 34) {

def javaVersion = JavaVersion.VERSION_17
def javaVersion = JavaVersion.VERSION_1_8
project.android {
compileSdk 34
if (namespace == null) {
Expand Down

0 comments on commit b1c23e1

Please sign in to comment.