Bump dependencies

pull/1/head
Lonami Exo 2022-10-11 10:56:06 +02:00
parent 0abdd79f72
commit b30caa41f6
2 changed files with 9 additions and 10 deletions

View File

@ -5,12 +5,12 @@ plugins {
android {
namespace 'dev.lonami.talaria'
compileSdk 32
compileSdk 33
defaultConfig {
applicationId "dev.lonami.talaria"
minSdk 21
targetSdk 32
targetSdk 33
versionCode 1
versionName "0.1.0"
@ -47,17 +47,16 @@ android {
}
dependencies {
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1'
implementation 'androidx.activity:activity-compose:1.3.1'
implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
implementation 'androidx.activity:activity-compose:1.6.0'
implementation "androidx.compose.ui:ui:$compose_ui_version"
implementation "androidx.compose.ui:ui-tooling-preview:$compose_ui_version"
implementation 'androidx.compose.material:material:1.1.1'
implementation 'androidx.compose.material:material:1.2.1'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_ui_version"
debugImplementation "androidx.compose.ui:ui-tooling:$compose_ui_version"
debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_ui_version"
}
}

View File

@ -1,10 +1,10 @@
buildscript {
ext {
compose_ui_version = '1.1.1'
compose_ui_version = '1.2.1'
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.3.0' apply false
id 'com.android.library' version '7.3.0' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
}
}