From 433cb7da3266f8211f84005b66504394af45ca3b Mon Sep 17 00:00:00 2001 From: Joe Groocock Date: Wed, 28 Aug 2024 13:03:19 +0000 Subject: [PATCH] Remove redundant dependency-analysis autoapply option Fixes the warning: > Configure project : dependency.analysis.autoapply is set to false, but this is now the only behavior, and the flag has no effect. You should remove it from your build scripts. Signed-off-by: Joe Groocock --- gradle.properties | 3 --- 1 file changed, 3 deletions(-) diff --git a/gradle.properties b/gradle.properties index 1e150e2eeb..e787539483 100644 --- a/gradle.properties +++ b/gradle.properties @@ -46,6 +46,3 @@ android.experimental.enableTestFixtures=true # Create BuildConfig files as bytecode to avoid Java compilation phase android.enableBuildConfigAsBytecode=true - -# By default, the plugin applies itself to all subprojects, but we don't want that as it would cause issues with builds using local AARs -dependency.analysis.autoapply=false