Skip to content

Commit

Permalink
Revert agp 8.1.0 to 7.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
workspace committed Aug 11, 2023
1 parent 88317a4 commit ef59af9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '17'
jvmTarget = '1.8'
}
buildFeatures {
compose = true
Expand Down
6 changes: 3 additions & 3 deletions bottomsheetdialog-compose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '17'
jvmTarget = '1.8'
}
buildFeatures {
buildConfig = false
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.holix.android.bottomsheetdialog.compose

object Versions {
internal const val ANDROID_GRADLE_PLUGIN = "8.1.0"
internal const val ANDROID_GRADLE_PLUGIN = "7.4.2"
internal const val GRADLE_NEXUS_PUBLISH_PLUGIN = "1.1.0"
internal const val KOTLIN = "1.9.0"

Expand Down

0 comments on commit ef59af9

Please sign in to comment.