Skip to content

Commit

Permalink
Dependency upgrade, version change.
Browse files Browse the repository at this point in the history
  • Loading branch information
HLCaptain committed Nov 18, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 2b47155 commit 5b7d4c9
Showing 5 changed files with 9 additions and 8 deletions.
7 changes: 2 additions & 5 deletions planty-client/android/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -8,9 +8,6 @@ plugins {
alias(libs.plugins.google.services)
}

group = "nest"
version = "1.0-SNAPSHOT"

repositories {
mavenCentral()
}
@@ -50,8 +47,8 @@ android {
applicationId = "nest.planty"
minSdk = 21
targetSdk = 34
versionCode = 1
versionName = "1.0-SNAPSHOT"
versionCode = 2
versionName = project.version.toString()
}
buildTypes {
getByName("release") {
3 changes: 2 additions & 1 deletion planty-client/common/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ plugins {
}

group = "nest"
version = "1.0-SNAPSHOT"
version = "0.1.1-alpha"

kotlin {
jvmToolchain(17)
@@ -135,6 +135,7 @@ android {
defaultConfig {
minSdk = 21
}
version = project.version.toString()
}

sqldelight {
1 change: 1 addition & 0 deletions planty-client/desktop/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -12,4 +12,5 @@ dependencies {

application {
mainClass = "nest.planty.MainKt"
version = project.version.toString()
}
2 changes: 1 addition & 1 deletion planty-client/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@ voyager-koin = { module = "cafe.adriel.voyager:voyager-koin", version.ref = "voy

androidx-appcompat = { module = "androidx.appcompat:appcompat", version = "1.6.1" }
androidx-core = { module = "androidx.core:core-ktx", version = "1.12.0" }
androidx-activity-compose = { module = "androidx.activity:activity-compose", version = "1.8.0" }
androidx-activity-compose = { module = "androidx.activity:activity-compose", version = "1.8.1" }

sqldelight-jvm = { module = "app.cash.sqldelight:sqlite-driver", version.ref = "sqldelight" }
sqldelight-android = { module = "app.cash.sqldelight:android-driver", version.ref = "sqldelight" }
4 changes: 3 additions & 1 deletion planty-client/web/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -23,5 +23,7 @@ kotlin {
}

compose.experimental {
web.application {}
web.application {
version = project.version.toString()
}
}

0 comments on commit 5b7d4c9

Please sign in to comment.