Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ivaniskandar committed Sep 6, 2024
1 parent 279ec07 commit 1f67c44
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id 'kotlin-android'
id 'com.google.android.gms.oss-licenses-plugin'
id "com.google.protobuf" version "0.9.4"
id "org.jetbrains.kotlin.plugin.compose" version "2.0.10"
id "org.jetbrains.kotlin.plugin.compose" version "2.0.20"
}

final def keystorePropertiesFile = rootProject.file("keystore.properties")
Expand Down Expand Up @@ -71,9 +71,9 @@ android {
dependencies {
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.activity:activity-compose:1.9.1'
implementation "androidx.navigation:navigation-compose:2.8.0-beta07"
implementation "androidx.profileinstaller:profileinstaller:1.4.0-alpha02"
implementation 'androidx.activity:activity-compose:1.9.2'
implementation "androidx.navigation:navigation-compose:2.8.0"
implementation "androidx.profileinstaller:profileinstaller:1.4.0-rc01"
implementation "com.github.topjohnwu.libsu:core:5.2.2"
implementation 'com.squareup.logcat:logcat:0.1'
implementation 'com.google.android.gms:play-services-oss-licenses:17.1.0'
Expand All @@ -90,15 +90,15 @@ dependencies {
implementation "androidx.compose.ui:ui-tooling-preview"
debugImplementation "androidx.compose.ui:ui-tooling"

def accompanist_version = "0.35.1-alpha"
def accompanist_version = "0.36.0"
implementation "com.google.accompanist:accompanist-navigation-material:$accompanist_version"
implementation "com.google.accompanist:accompanist-systemuicontroller:$accompanist_version"

def coroutines_version = "1.8.1"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"

def lifecycle_version = "2.8.4"
def lifecycle_version = "2.8.5"
implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version"
implementation "androidx.lifecycle:lifecycle-service:$lifecycle_version"
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = "2.0.10"
compose_bom_version = '2024.08.00-alpha01'
protobuf_version = '4.27.2'
kotlin_version = "2.0.20"
compose_bom_version = '2024.09.00-alpha01'
protobuf_version = '4.28.0'
}
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.2'
classpath 'com.android.tools.build:gradle:8.6.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.android.gms:oss-licenses-plugin:0.10.6'
classpath 'com.diffplug.spotless:spotless-plugin-gradle:6.25.0'
Expand Down

0 comments on commit 1f67c44

Please sign in to comment.