Skip to content

Commit

Permalink
Upgrade gradle to 8.2 (#74)
Browse files Browse the repository at this point in the history
* Upgrade gradle to 8.2

* Update java version
  • Loading branch information
hieuwu authored Feb 18, 2024
1 parent d2a5b69 commit 643631c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.1.0" apply false
id("com.android.application") version "8.2.2" apply false
id("org.jetbrains.kotlin.android") version "1.9.22" apply false
id("com.android.library") version "8.2.2" apply false
id("pl.allegro.tech.build.axion-release") version "1.17.0" apply false
Expand Down
8 changes: 4 additions & 4 deletions components/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {

android {
namespace = "dev.arkbuilders.components"
compileSdk = 33
compileSdk = 34

defaultConfig {
minSdk = 26
Expand All @@ -28,11 +28,11 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
}
buildFeatures {
viewBinding = true
Expand Down
10 changes: 5 additions & 5 deletions sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ plugins {

android {
namespace = "dev.arkbuilders.sample"
compileSdk = 33
compileSdk = 34

defaultConfig {
applicationId = "dev.arkbuilders.sample"
minSdk = 26
targetSdk = 33
targetSdk = 34
versionCode = 1
versionName = "1.0"

Expand All @@ -37,11 +37,11 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
}
buildFeatures {
buildConfig = true
Expand Down

0 comments on commit 643631c

Please sign in to comment.