From 3fa5cd31a962fad5e122bdf0031b7dfe94cc9491 Mon Sep 17 00:00:00 2001 From: Mycoola Date: Tue, 26 Oct 2021 15:38:05 +0200 Subject: [PATCH] add extension gradle file --- app/build.gradle | 4 +--- build.gradle | 2 +- liband/build.gradle | 4 ++-- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 25ee268..aaf2ed6 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -2,8 +2,6 @@ apply plugin: 'com.android.application' apply plugin: 'kotlin-android' -apply plugin: 'kotlin-android-extensions' - apply plugin: 'com.google.gms.google-services' apply plugin: 'kotlin-kapt' @@ -57,7 +55,7 @@ dependencies { implementation 'androidx.appcompat:appcompat:1.4.0-beta01' implementation 'androidx.constraintlayout:constraintlayout:2.1.1' implementation 'androidx.room:room-runtime:2.3.0' - annotationProcessor 'androidx.room:room-compiler:2.3.0' + kapt 'androidx.room:room-compiler:2.3.0' testImplementation 'androidx.room:room-testing:2.3.0' implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' diff --git a/build.gradle b/build.gradle index baeae88..7932474 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ buildscript { } dependencies { classpath 'com.android.tools.build:gradle:7.1.0-beta01' - classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31' + classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0-RC' classpath 'com.google.gms:google-services:4.3.10' // NOTE: Do not place your application dependencies here; they belong diff --git a/liband/build.gradle b/liband/build.gradle index ae80ff6..cfc2ac6 100644 --- a/liband/build.gradle +++ b/liband/build.gradle @@ -56,8 +56,8 @@ dependencies { implementation 'androidx.preference:preference-ktx:1.1.1' - annotationProcessor 'androidx.room:room-compiler:2.3.0' - annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0' + kapt 'androidx.room:room-compiler:2.3.0' + kapt 'com.github.bumptech.glide:compiler:4.12.0' testImplementation 'junit:junit:4.13.2' testImplementation 'androidx.room:room-testing:2.3.0' androidTestImplementation 'androidx.test:runner:1.4.1-alpha03'