Updated Dependencies.

This commit is contained in:
Stefan 2021-12-04 09:17:46 +01:00
parent 1c01f5bf19
commit 7967f962bd
4 changed files with 17 additions and 15 deletions

View File

@ -12,13 +12,13 @@ plugins {
}
android {
compileSdkVersion 30
compileSdkVersion 31
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "com.example.todoapp"
minSdkVersion 26
targetSdkVersion 30
targetSdkVersion 31
versionCode 1
versionName "1.0"
@ -49,9 +49,9 @@ android {
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
@ -62,18 +62,18 @@ dependencies {
implementation 'androidx.navigation:navigation-ui-ktx:2.3.5'
// Room components
implementation "androidx.room:room-runtime:2.3.0"
kapt "androidx.room:room-compiler:2.3.0"
implementation "androidx.room:room-ktx:2.3.0"
androidTestImplementation "androidx.room:room-testing:2.3.0"
implementation "androidx.room:room-runtime:2.4.0-beta02"
kapt "androidx.room:room-compiler:2.4.0-beta02"
implementation "androidx.room:room-ktx:2.4.0-beta02"
androidTestImplementation "androidx.room:room-testing:2.4.0-beta02"
// Lifecycle components
implementation "androidx.lifecycle:lifecycle-extensions:2.2.0"
implementation "androidx.lifecycle:lifecycle-common-java8:2.3.1"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1"
implementation "androidx.lifecycle:lifecycle-common-java8:2.4.0"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0"
// Kotlin components
api "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0"
api "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0"
api "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2"
api "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2"
}

View File

@ -11,6 +11,7 @@
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:exported="true"
android:name=".MainActivity"
android:windowSoftInputMode="adjustPan">
<intent-filter>

View File

@ -32,6 +32,7 @@ class BindingAdapters {
when(emptyDatabase.value){
true -> view.visibility = View.VISIBLE
false -> view.visibility = View.INVISIBLE
else -> {}
}
}
@BindingAdapter("android:parsePriorityToInt")

View File

@ -6,9 +6,9 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.0'
classpath 'com.android.tools.build:gradle:7.0.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.5"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files