Skip to content

Commit

Permalink
Gradle/Android: Update the version of CompileSDK to 35
Browse files Browse the repository at this point in the history
This patch updates the version of libraries used in this project and
CompileSDK to the latest.

Signed-off-by: Wook Song <[email protected]>
  • Loading branch information
wooksong authored and niley7464 committed Nov 6, 2024
1 parent ba47dab commit d242e82
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 13 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ plugins {
alias(libs.plugins.jetbrainsKotlinAndroid) apply false
alias(libs.plugins.jetbrainsKotlinSerialization) apply false
alias(libs.plugins.jetbrainsDokka) apply false
alias(libs.plugins.kotlin.compose) apply false
}

buildscript {
Expand Down
25 changes: 13 additions & 12 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
[versions]
activityCompose = "1.8.2"
activityCompose = "1.9.3"
android-compile-sdk = "34"
agp = "8.7.2"
appcompat = "1.7.0"
commons-compress-lib = "1.26.1"
composeBom = "2024.04.00"
composeMaterial = "1.7.0"
composeNavigation = "2.8.0"
coreKtx = "1.12.0"
composeBom = "2024.10.01"
composeMaterial = "1.7.5"
composeNavigation = "2.8.3"
coreKtx = "1.15.0"
dagger = "2.51.1"
datastore = "1.1.1"
dokka = "1.9.20"
dokka-mermaid = "0.6.0"
espressoCore = "3.5.1"
google-devtools-ksp = "1.9.23-1.0.19"
espressoCore = "3.6.1"
google-devtools-ksp = "2.0.21-1.0.26"
gson = "2.11.0"
gstreamer = "1.24.0"
junit = "4.13.2"
junitVersion = "1.1.5"
kotlin = "1.9.23"
junitVersion = "1.2.1"
kotlin = "2.0.21"
kotlinPluginSerialization = "2.0.20"
kotlinxSerializationJson = "1.6.3"
lifecycleRuntime = "2.7.0"
lifecycleRuntime = "2.8.7"
recyclerview = "1.3.2"
robolectric = "4.12.2"
room = "2.6.1"
tensorflowLite = "2.16.1"
tukaani-xz-plugin = "1.9"
uiTestJunit4Android = "1.6.8"
uiTestJunit4Android = "1.7.5"
xyz-simple-git-plugin = "2.0.3"
cameraCore = "1.3.4"
cameraCore = "1.4.0"
firebaseCrashlyticsBuildtools = "3.0.2"

[libraries]
Expand Down Expand Up @@ -86,3 +86,4 @@ jetbrainsDokka = { id = "org.jetbrains.dokka", version.ref = "dokka" }
jetbrainsKotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
jetbrainsKotlinSerialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
xyz-simple-git = { id = "xyz.ronella.simple-git", version.ref = "xyz-simple-git-plugin" }
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
3 changes: 2 additions & 1 deletion ml_inference_offloading/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ plugins {
id(libs.plugins.jetbrainsKotlinAndroid.get().pluginId)
id(libs.plugins.jetbrainsKotlinSerialization.get().pluginId)
id(libs.plugins.jetbrainsDokka.get().pluginId)
alias(libs.plugins.kotlin.compose)
}

android {
namespace = "ai.nnstreamer.ml.inference.offloading"
compileSdk = 34
compileSdk = 35

defaultConfig {
applicationId = "ai.nnstreamer.ml.inference.offloading"
Expand Down

0 comments on commit d242e82

Please sign in to comment.