Skip to content

Commit

Permalink
Version 1.2 - Maintenance update
Browse files Browse the repository at this point in the history
- Upgrade targetSdk to 35
- Upgrade jvmTarget to 22
- Upgrade plugin-sdk to 2.1.0
- Update android dependencies
  • Loading branch information
Sir-Photch committed Aug 17, 2024
1 parent 9873351 commit 32051a1
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ plugins {

android {
namespace = "xyz.sirphotch.kvaesitsoplugin.publictransport"
compileSdk = 34
compileSdk = 35

defaultConfig {
applicationId = "xyz.sirphotch.kvaesitsoplugin.publictransport"
minSdk = 30
targetSdk = 34
targetSdk = 35
// YYYYMMNN where NN is number of release of month MM
versionCode = 20240701
versionName = "1.1"
versionCode = 20240801
versionName = "1.2"

vectorDrawables {
useSupportLibrary = true
Expand All @@ -38,11 +38,11 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_22
targetCompatibility = JavaVersion.VERSION_22
}
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "22"
}
buildFeatures {
compose = true
Expand Down
14 changes: 7 additions & 7 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
[versions]
agp = "8.6.0-alpha08"
agp = "8.7.0-alpha06"
kotlin = "2.0.0"
coreKtx = "1.13.1"
appcompat = "1.7.0"
material = "1.12.0"

lifecycleRuntimeKtx = "2.8.2"
activityCompose = "1.9.0"
lifecycleRuntimeKtx = "2.8.4"
activityCompose = "1.9.1"
composeBom = "2024.06.00"
material3Android = "1.2.1"
datastore = "1.1.1"

serialization = "1.7.1"
launcherSdk = "2.0.1"
launcherSdk = "2.1.0"
kasechange = "1.4.1"
lifecycleRuntimeComposeAndroid = "2.8.2"
lifecycleRuntimeComposeAndroid = "2.8.4"
navigationCompose = "2.7.7"

[libraries]
Expand All @@ -25,8 +25,8 @@ material = { group = "com.google.android.material", name = "material", version.r
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" }
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" }
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling", version = "1.7.0-beta04" }
androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest", version = "1.7.0-beta04" }
androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling", version = "1.7.0-beta07" }
androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest", version = "1.7.0-beta07" }
androidx-material3-android = { group = "androidx.compose.material3", name = "material3-android", version.ref = "material3Android" }
androidx-datastore-preferences = { group = "androidx.datastore", name = "datastore-preferences", version.ref = "datastore" }

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sun Jun 02 19:16:02 CEST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 32051a1

Please sign in to comment.