Skip to content

Commit

Permalink
bump up libraries to latest (#139)
Browse files Browse the repository at this point in the history
* bump up libraries to latest

* update benchmark
  • Loading branch information
skhugh authored Oct 26, 2023
1 parent 28e9791 commit 55c49c1
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

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

6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("com.android.application") version libs.versions.agp apply false
id("com.android.library") version libs.versions.agp apply false
id("org.jetbrains.kotlin.android") version "1.9.0" apply false
id("com.google.protobuf") version "0.9.3" apply false
id("org.jetbrains.kotlin.android") version "1.9.10" apply false
id("com.google.protobuf") version "0.9.4" apply false
id("org.jmailen.kotlinter") version "3.15.0" apply true
id("org.jetbrains.dokka") version "1.8.20" apply false
id("org.jetbrains.dokka") version "1.9.10" apply false
alias(libs.plugins.androidx.benchmark) apply false
}

Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
file.encoding=utf-8
org.gradle.jvmargs=-Xmx6g -XX:MaxMetaspaceSize=1g -XX:+UseParallelGC -Dfile.encoding=UTF-8
org.gradle.unsafe.configuration-cache=true
android.useAndroidX=true
android.nonTransitiveRClass=true
android.defaults.buildfeatures.buildconfig=true
Expand Down
26 changes: 13 additions & 13 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[versions]
minSdk = "23"
compileSdk = "33"
targetSdk = "33"
agp = "8.1.0"
protobuf = "3.23.4"
grpc = "1.56.1"
grpc-kotlin = "1.3.0"
compileSdk = "34"
targetSdk = "34"
agp = "8.1.2"
protobuf = "3.24.4"
grpc = "1.58.0"
grpc-kotlin = "1.4.0"
kotlinx-coroutines = "1.7.3"
androidx-activity = "1.7.2"
androidx-lifecycle = "2.6.1"
androidx-benchmark = "1.2.0-alpha15"
androidx-compose-compiler = "1.5.0"
androidx-activity = "1.8.0"
androidx-lifecycle = "2.6.2"
androidx-benchmark = "1.2.0"
androidx-compose-compiler = "1.5.3"

[libraries]
grpc-stub = { group = "io.grpc", name = "grpc-stub", version.ref = "grpc" }
Expand All @@ -26,7 +26,7 @@ kotlinx-collections-immutable = { group = "org.jetbrains.kotlinx", name = "kotli

apache-commons-collections = { group = "org.apache.commons", name = "commons-collections4", version = "4.4" }

androidx-core = { group = "androidx.core", name = "core-ktx", version = "1.10.1" }
androidx-core = { group = "androidx.core", name = "core-ktx", version = "1.12.0" }
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version = "1.6.1" }
androidx-activity = { group = "androidx.activity", name = "activity-ktx", version.ref = "androidx-activity" }
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "androidx-activity" }
Expand All @@ -35,14 +35,14 @@ androidx-lifecycle-viewmodel = { group = "androidx.lifecycle", name = "lifecycle
androidx-lifecycle-runtime = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "androidx-lifecycle" }
androidx-benchmark = { group = "androidx.benchmark", name = "benchmark-junit4", version.ref = "androidx-benchmark" }

androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version = "2023.06.01" }
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version = "2023.10.00" }
androidx-compose-ui = { module = "androidx.compose.ui:ui" }
androidx-compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling" }
androidx-compose-ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview" }
androidx-compose-ui-test-manifest = { module = "androidx.compose.ui:ui-test-manifest" }
androidx-compose-material = { module = "androidx.compose.material:material" }

material = { group = "com.google.android.material", name = "material", version = "1.9.0" }
material = { group = "com.google.android.material", name = "material", version = "1.10.0" }

gson = { group = "com.google.code.gson", name = "gson", version = "2.10.1" }

Expand Down

0 comments on commit 55c49c1

Please sign in to comment.