From 9402421929e973d547d03208ad46bafbd5e46363 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Mon, 6 Nov 2023 15:07:46 +0100 Subject: [PATCH] Let lint analysis the module :appconfig. We had this warning: Lint will treat :appconfig as an external dependency and not analyze it. * Recommended Action: Apply the 'com.android.lint' plugin to java library project :appconfig. to enable lint to analyze those sources. --- appconfig/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/appconfig/build.gradle.kts b/appconfig/build.gradle.kts index 3f9275d383..853a775b45 100644 --- a/appconfig/build.gradle.kts +++ b/appconfig/build.gradle.kts @@ -15,6 +15,7 @@ */ plugins { id("java-library") + id("com.android.lint") alias(libs.plugins.kotlin.jvm) alias(libs.plugins.anvil) alias(libs.plugins.ksp)