Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gradle/Android: Update the version of CompileSDK to 35 #123

Merged
merged 2 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
27 changes: 14 additions & 13 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.3.1"
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" }
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 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
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