diff --git a/app/build.gradle b/app/build.gradle index 7cc04fc..3b87ecd 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,7 +1,6 @@ apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' -apply plugin: 'kotlin-kapt' android { compileSdkVersion 30 @@ -60,7 +59,6 @@ dependencies { //ROOM DB def room_version = "2.2.6" implementation "androidx.room:room-runtime:$room_version" - kapt "androidx.room:room-compiler:$room_version" implementation "androidx.room:room-ktx:$room_version" testImplementation 'junit:junit:4.13.1' diff --git a/gradle.properties b/gradle.properties index 6706aea..4d15d01 100644 --- a/gradle.properties +++ b/gradle.properties @@ -18,7 +18,4 @@ android.useAndroidX=true # Automatically convert third-party libraries to use AndroidX android.enableJetifier=true # Kotlin code style for this project: "official" or "obsolete": -kotlin.code.style=official -# Kapt workaround -kapt.use.worker.api=false -kapt.incremental.apt=false +kotlin.code.style=official \ No newline at end of file