Skip to content

Commit

Permalink
chore: Update Kotlin and dependencies
Browse files Browse the repository at this point in the history
- Update kotlin compiler extension version to 1.5.8
- Update activity-compose version to 1.8.2
- Update AGP version to 8.2.2
- Update compose-bom version to 2024.01.00
- Update kotlin version to 1.9.22
- Update lifecycle-runtime-ktx version to 2.7.0
- Update msal version to 5.0.1
- Update navigation-compose version to 2.7.6
- Update gradle version to 8.5

Signed-off-by: Andrey Slyusar <[email protected]>
  • Loading branch information
reysand committed Feb 2, 2024
1 parent fb2af27 commit fd4b5b3
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 16 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.

4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ android {
minSdk = 33
targetSdk = 34
versionCode = 3
versionName = "0.1.1"
versionName = "0.1.2"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down Expand Up @@ -80,7 +80,7 @@ android {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.6"
kotlinCompilerExtensionVersion = "1.5.8"
}
packaging {
resources {
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/com/reysand/files/ui/FilesApp.kt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.padding
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.ArrowBack
import androidx.compose.material.icons.automirrored.filled.ArrowBack
import androidx.compose.material.icons.rounded.Settings
import androidx.compose.material3.CenterAlignedTopAppBar
import androidx.compose.material3.ExperimentalMaterial3Api
Expand Down Expand Up @@ -89,7 +89,7 @@ fun FilesApp(filesViewModel: FilesViewModel = viewModel(factory = FilesViewModel
}
}) {
Icon(
imageVector = Icons.Default.ArrowBack, contentDescription = null
imageVector = Icons.AutoMirrored.Filled.ArrowBack, contentDescription = null
)
}
}
Expand Down
16 changes: 7 additions & 9 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[versions]
activity-compose = "1.8.1"
agp = "8.2.0"
activity-compose = "1.8.2"
agp = "8.2.2"
androidx-test-ext-junit = "1.1.5"
compose-bom = "2023.10.01"
compose-bom = "2024.01.00"
core-ktx = "1.12.0"
datastore-preferences = "1.0.0"
espresso-core = "3.5.1"
junit = "4.13.2"
kotlin = "1.9.21"
lifecycle-runtime-ktx = "2.6.2"
msal = "4.10.0"
navigation-compose = "2.7.5"
kotlin = "1.9.22"
lifecycle-runtime-ktx = "2.7.0"
msal = "5.0.1"
navigation-compose = "2.7.6"
opentelemetry-api = "1.18.0"
opentelemetry-context = "1.18.0"
retrofit = "2.9.0"
Expand All @@ -20,7 +19,6 @@ activity-compose = { group = "androidx.activity", name = "activity-compose", ver
androidx-test-ext-junit = { group = "androidx.test.ext", name = "junit", version.ref = "androidx-test-ext-junit" }
compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "compose-bom" }
core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "core-ktx" }
datastore-preferences = { group = "androidx.datastore", name = "datastore-preferences", version.ref = "datastore-preferences" }
espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espresso-core" }
junit = { group = "junit", name = "junit", version.ref = "junit" }
lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycle-runtime-ktx" }
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Nov 10 19:07:23 MSK 2023
#Fri Feb 02 11:54:44 MSK 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.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit fd4b5b3

Please sign in to comment.