Skip to content

Commit

Permalink
Release 1.6.0
Browse files Browse the repository at this point in the history
- androidx.activity 1.8.2 -> 1.9.3
- androidx.core 1.12.0 -> 1.15.0
- material 1.11.0 -> 1.12.0
- compose 1.8.0-alpha06
  • Loading branch information
workspace committed Nov 16, 2024
1 parent 4c6f7bf commit ac658ca
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 15 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = libs.versions.jvmTarget.get()
jvmTarget = "17"
}
buildFeatures {
compose = true
Expand Down
6 changes: 3 additions & 3 deletions bottomsheetdialog-compose/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = libs.versions.jvmTarget.get()
jvmTarget = "17"
}
buildFeatures {
buildConfig = false
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package com.holix.android.bottomsheetdialog.compose

object Configuration {
const val compileSdk = 34
const val compileSdk = 35
const val targetSdk = 34
const val minSdk = 21
const val majorVersion = 1
const val minorVersion = 5
const val patchVersion = 1
const val minorVersion = 6
const val patchVersion = 0
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 151
const val versionCode = 160
const val artifactGroup = "com.holix.android"
}
9 changes: 4 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,22 @@
androidGradlePlugin = "8.7.2"
nexusPlugin = "1.3.0"
kotlin = "1.9.24"
jvmTarget = "11"
spotless = "6.25.0"

androidxActivity = "1.8.2"
androidxCore = "1.12.0"
androidxActivity = "1.9.3"
androidxCore = "1.15.0"
androidxComposeBom = "2024.11.00"
androidxComposeCompiler = "1.5.14"

material = "1.11.0"
material = "1.12.0"
colorPickerCompose = "1.0.7"

[libraries]
androidx-activity = { group = "androidx.activity", name = "activity-ktx", version.ref = "androidxActivity" }
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "androidxActivity" }
androidx-core = { group = "androidx.core", name = "core-ktx", version.ref = "androidxCore" }

androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "androidxComposeBom" }
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom-alpha", version.ref = "androidxComposeBom" }
androidx-compose-runtime = { group = "androidx.compose.runtime", name = "runtime" }
androidx-compose-material = { group = "androidx.compose.material", name = "material" }
androidx-compose-foundation = { group = "androidx.compose.foundation", name = "foundation" }
Expand Down

0 comments on commit ac658ca

Please sign in to comment.