Skip to content

Commit

Permalink
Upgrade versions, move src java -> kotlin
Browse files Browse the repository at this point in the history
  • Loading branch information
keyboardsurfer committed Aug 30, 2024
1 parent 570221d commit 8ca6d63
Show file tree
Hide file tree
Showing 45 changed files with 18 additions and 21 deletions.
5 changes: 1 addition & 4 deletions MacrobenchmarkSample/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

plugins {
alias(libs.plugins.application)
alias(libs.plugins.compose)
alias(libs.plugins.kotlin)
alias(libs.plugins.baselineprofile)
}
Expand All @@ -38,10 +39,6 @@ android {
viewBinding = true
}

composeOptions {
kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get()
}

// [START macrobenchmark_setup_app_build_type]
buildTypes {
getByName("release") {
Expand Down
30 changes: 15 additions & 15 deletions MacrobenchmarkSample/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
[versions]
agp = "8.3.0"
activity = "1.8.2"
appcompat = "1.6.1"
benchmark = "1.2.3"
composeBom = "2024.02.01"
composeCompiler = "1.5.4"
agp = "8.5.2"
activity = "1.9.1"
appcompat = "1.7.0"
benchmark = "1.3.0"
composeBom = "2024.08.00"
constraintLayout = "2.1.4"
core = "1.12.0"
coroutines = "1.7.3"
concurrentFutures = "1.1.0"
core = "1.13.1"
coroutines = "1.8.0"
concurrentFutures = "1.2.0"
curtains = "1.2.4"
dataStore = "1.0.0"
espressoCore = "3.5.1"
jUnit = "1.1.5"
kotlin = "1.9.20"
lifecycle = "2.7.0"
material = "1.11.0"
dataStore = "1.1.1"
espressoCore = "3.6.1"
jUnit = "1.2.1"
kotlin = "2.0.10"
lifecycle = "2.8.4"
material = "1.12.0"
profileInstaller = "1.3.1"
runtimeTracing = "1.0.0-beta01"
tracing = "1.3.0-alpha02"
Expand Down Expand Up @@ -54,6 +53,7 @@ viewmodel = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-ktx", ve

application = { id = "com.android.application", version.ref = "agp" }
baselineprofile = { id = "androidx.baselineprofile", version.ref = "benchmark" }
compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
library = { id = "com.android.library", version.ref = "agp" }
test = { id = "com.android.test", version.ref = "agp" }
kotlin = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
4 changes: 2 additions & 2 deletions MacrobenchmarkSample/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Mar 06 15:40:15 GMT 2023
#Fri Aug 30 09:45:14 CEST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 8ca6d63

Please sign in to comment.