Skip to content

Commit

Permalink
Bump versions, fixes #90
Browse files Browse the repository at this point in the history
  • Loading branch information
samolego committed Feb 20, 2025
1 parent 2f90d4f commit 32ae3db
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 16 deletions.
5 changes: 3 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ android {

defaultConfig {
applicationId = "org.samo_lego.canta"
minSdk = 28 // todo - figure out a way to bypass hidden api methods on android <9
minSdk = 28 // todo - figure out a way to bypass hidden api methods on android < 9
targetSdk = 35
versionCode = project.property("version_code")?.toString()?.toInt() ?: 1
versionName = project.property("version_name")?.toString() ?: "1.0.0"
Expand Down Expand Up @@ -72,7 +72,7 @@ android {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.1"
kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get()
}
packaging {
resources {
Expand All @@ -82,6 +82,7 @@ android {
}

dependencies {
implementation(libs.kotlin.stdlib)
implementation(libs.androidx.core.ktx)
implementation(libs.androidx.lifecycle.runtime.ktx)
implementation(libs.androidx.activity.compose)
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.7.0" apply false
id("org.jetbrains.kotlin.android") version "1.9.0" apply false
}
id("org.jetbrains.kotlin.android") version libs.versions.kotlin.get() apply false
}
27 changes: 15 additions & 12 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
[versions]
activityCompose = "1.9.1"
activityCompose = "1.10.0"
api = "13.1.5"
coilCompose = "2.7.0"
composeBom = "2024.06.00"
coreKtx = "1.13.1"
coilCompose = "3.1.0"
composeBom = "2025.02.00"
coreKtx = "1.15.0"
espressoCore = "3.6.1"
hiddenapibypass = "4.3"
hiddenapibypass = "6.1"
junit = "4.13.2"
junitVersion = "1.2.1"
lifecycleRuntimeKtx = "2.8.4"
material3Android = "1.2.1"
materialIconsExtended = "1.6.8"
navigationRuntimeKtx = "2.7.7"
navigationCompose = "2.7.7"
lifecycleRuntimeKtx = "2.8.7"
material3Android = "1.3.1"
materialIconsExtended = "1.7.8"
navigationRuntimeKtx = "2.8.7"
navigationCompose = "2.8.7"
provider = "13.1.5"
kotlin = "1.9.22"
composeCompiler = "1.5.8"

[libraries]
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "activityCompose" }
Expand All @@ -33,7 +35,8 @@ androidx-ui-test-manifest = { module = "androidx.compose.ui:ui-test-manifest" }
androidx-ui-tooling = { module = "androidx.compose.ui:ui-tooling" }
androidx-ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview" }
api = { module = "dev.rikka.shizuku:api", version.ref = "api" }
coil-compose = { module = "io.coil-kt:coil-compose", version.ref = "coilCompose" }
coil-compose = { module = "io.coil-kt.coil3:coil-compose", version.ref = "coilCompose" }
hiddenapibypass = { module = "org.lsposed.hiddenapibypass:hiddenapibypass", version.ref = "hiddenapibypass" }
junit = { module = "junit:junit", version.ref = "junit" }
provider = { module = "dev.rikka.shizuku:provider", version.ref = "provider" }
provider = { module = "dev.rikka.shizuku:provider", version.ref = "provider" }
kotlin-stdlib = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin" }

0 comments on commit 32ae3db

Please sign in to comment.