From 47a91fcc093276e8d8d793ea3a767142011d2883 Mon Sep 17 00:00:00 2001 From: Avior Date: Tue, 23 Aug 2022 19:23:10 +0200 Subject: [PATCH] fix(app): some tasks not being detected --- app/build.gradle.kts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 7d0b803..9276237 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -3,11 +3,13 @@ import java.util.Properties plugins { id("com.android.application") kotlin("android") - kotlin("kapt") id("dagger.hilt.android.plugin") // Safe Navigation id("androidx.navigation.safeargs") + + // keep at bottom + kotlin("kapt") } android {