From 5f1ea69bfc15a9d0f6035e684af9ec3013b86c50 Mon Sep 17 00:00:00 2001 From: Stefan Schueller Date: Sun, 3 Oct 2021 14:22:31 +0200 Subject: [PATCH] fix: android update --- app/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index ee2d806..be45561 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -36,6 +36,8 @@ else { secretProperties.setProperty("signing_key_alias", "${System.getenv('signing_key_alias')}") } +apply plugin: 'kotlin-kapt' + android { compileSdkVersion 29 buildToolsVersion "30.0.2" @@ -149,7 +151,7 @@ dependencies { // database lib implementation "androidx.room:room-runtime:$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 annotationProcessor "androidx.lifecycle:lifecycle-common-java8:$lifecycleVersion"