Migration to Kotlin 1.9.0 and Compose 1.5.0

This commit is contained in:
Thomas Andres Gomez 2023-08-30 15:46:15 +02:00
parent 08346d1dba
commit 42b26e2b9b
15 changed files with 89 additions and 136 deletions

View file

@ -10,7 +10,7 @@ plugins {
android {
namespace = "com.pixelized.rplexicon"
compileSdk = 33
compileSdk = 34
signingConfigs {
getByName("debug") {
@ -30,7 +30,7 @@ android {
defaultConfig {
applicationId = "com.pixelized.rplexicon"
minSdk = 26
targetSdk = 33
targetSdk = 34
versionName = "0.3.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
@ -80,7 +80,7 @@ android {
}
composeOptions {
kotlinCompilerExtensionVersion = "1.4.8"
kotlinCompilerExtensionVersion = "1.5.2"
}
packaging {
@ -99,16 +99,18 @@ dependencies {
implementation("androidx.activity:activity-compose:1.7.2")
// Compose
implementation("androidx.compose.ui:ui:1.4.3")
implementation("androidx.compose.ui:ui-util:1.4.3")
implementation("androidx.compose.ui:ui-graphics:1.4.3")
implementation("androidx.compose.ui:ui-tooling-preview:1.4.3")
implementation("androidx.compose.material:material:1.4.3")
implementation("androidx.compose.ui:ui:1.5.0")
implementation("androidx.compose.ui:ui-util:1.5.0")
implementation("androidx.compose.ui:ui-graphics:1.5.0")
implementation("androidx.compose.ui:ui-tooling-preview:1.5.0")
implementation("androidx.compose.material:material:1.5.0")
implementation("androidx.compose.material3:material3:1.1.1")
debugImplementation("androidx.compose.ui:ui-tooling:1.4.3")
debugImplementation("androidx.compose.ui:ui-tooling:1.5.0")
// Navigation
implementation("androidx.navigation:navigation-compose:2.7.1")
// Accompanist
implementation("com.google.accompanist:accompanist-navigation-animation:0.30.1")
implementation("com.google.accompanist:accompanist-placeholder:0.30.1")
// Splash Screen support prior to Android 12
@ -132,8 +134,8 @@ dependencies {
// Hilt: Dependency injection
implementation("androidx.hilt:hilt-navigation-compose:1.0.0")
implementation("com.google.dagger:hilt-android:2.45")
kapt("com.google.dagger:hilt-compiler:2.45")
implementation("com.google.dagger:hilt-android:2.46.1")
kapt("com.google.dagger:hilt-compiler:2.46.1")
// Image
implementation("com.github.skydoves:landscapist-glide:2.1.11")