fix: android update

This commit is contained in:
Stefan Schueller 2021-10-03 14:22:31 +02:00
parent 2ccb9fd21c
commit 5f1ea69bfc
1 changed files with 3 additions and 1 deletions

View File

@ -36,6 +36,8 @@ else {
secretProperties.setProperty("signing_key_alias", "${System.getenv('signing_key_alias')}") secretProperties.setProperty("signing_key_alias", "${System.getenv('signing_key_alias')}")
} }
apply plugin: 'kotlin-kapt'
android { android {
compileSdkVersion 29 compileSdkVersion 29
buildToolsVersion "30.0.2" buildToolsVersion "30.0.2"
@ -149,7 +151,7 @@ dependencies {
// database lib // database lib
implementation "androidx.room:room-runtime:$room_version" implementation "androidx.room:room-runtime:$room_version"
implementation "androidx.room:room-ktx:$room_version" implementation "androidx.room:room-ktx:$room_version"
annotationProcessor "androidx.room:room-compiler:$room_version" kapt "androidx.room:room-compiler:$room_version"
// Lifecycle components // Lifecycle components
annotationProcessor "androidx.lifecycle:lifecycle-common-java8:$lifecycleVersion" annotationProcessor "androidx.lifecycle:lifecycle-common-java8:$lifecycleVersion"