From 04452e4756f58cd79d53607585611517bd658b23 Mon Sep 17 00:00:00 2001 From: andrekir Date: Sat, 1 Apr 2023 08:16:51 -0300 Subject: [PATCH] chore: fix kapt warning moving 'kotlin-kapt' to the bottom of plugins {} gets rid of the warning: "The following options were not recognized by any processor: '[dagger.fastInit, dagger.hilt.android.internal.disableAndroidSuperclassValidation, dagger.hilt.android.internal.projectType, dagger.hilt.internal.useAggregatingRootProcessor, kapt.kotlin.generated]'" --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index d89c1dd6b..393982ca9 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,12 +1,12 @@ plugins { id 'com.android.application' id 'kotlin-android' - id 'kotlin-kapt' id 'kotlin-parcelize' id 'kotlinx-serialization' id 'com.google.dagger.hilt.android' id 'de.mobilej.unmock' id 'com.google.protobuf' + id 'kotlin-kapt' } unMock {