Skip to content

Commit

Permalink
Bump Java version to 11
Browse files Browse the repository at this point in the history
  • Loading branch information
adimiz1 committed Sep 19, 2024
1 parent 9f6da60 commit 5329d61
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 26 deletions.
7 changes: 3 additions & 4 deletions all/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 33
buildToolsVersion "30.0.2"
compileSdk 33


defaultConfig {
Expand All @@ -23,8 +22,8 @@ android {
}

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

}
Expand Down
7 changes: 3 additions & 4 deletions core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 33
buildToolsVersion "30.0.2"
compileSdk 33


defaultConfig {
Expand All @@ -27,8 +26,8 @@ android {
}

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

Expand Down
7 changes: 3 additions & 4 deletions download/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 33
buildToolsVersion "30.0.2"
compileSdk 33

defaultConfig {
minSdkVersion 21
Expand All @@ -24,8 +23,8 @@ android {
}

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

}
Expand Down
7 changes: 3 additions & 4 deletions glide-integration/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 33
buildToolsVersion "30.0.2"
compileSdk 33

defaultConfig {
minSdkVersion 21
Expand All @@ -22,8 +21,8 @@ android {
}

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

}
Expand Down
7 changes: 3 additions & 4 deletions preprocess/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 33
buildToolsVersion "30.0.2"
compileSdk 33

defaultConfig {
minSdkVersion 21
Expand All @@ -28,8 +27,8 @@ android {
}

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

}
Expand Down
4 changes: 2 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ android {
}

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

Expand Down
7 changes: 3 additions & 4 deletions ui/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 33
buildToolsVersion "30.0.2"
compileSdk 33


defaultConfig {
Expand All @@ -24,8 +23,8 @@ android {
}

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

}
Expand Down

0 comments on commit 5329d61

Please sign in to comment.