From 695fe25eefce9074cfba98fddc278158c5ee9851 Mon Sep 17 00:00:00 2001 From: Kaarel Kaljurand Date: Mon, 10 Jul 2023 06:09:17 +0200 Subject: [PATCH] Disable configuration cache when running task "deploy" --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index a43ca0af..0bc41e67 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -90,13 +90,13 @@ if (project.hasProperty('storePassword') && project.hasProperty('keyPassword')) task deploy { + // TODO: temporary fix for the issue with accessing the android-property from doLast + notCompatibleWithConfigurationCache("https://docs.gradle.org/current/userguide/configuration_cache.html") doLast { description 'Copy the APK and the ProGuard mapping file to the deploy directory' def deploy_dir = System.getenv('APK_DEPLOY_DIR') - def version = android.defaultConfig.versionName - def name = 'K6nele' def outputs = 'build/outputs/'