From 25439617784a0bbb0a379d93d844a4d34970acd7 Mon Sep 17 00:00:00 2001 From: rhunk <101876869+rhunk@users.noreply.github.com> Date: Sat, 20 May 2023 17:41:52 +0200 Subject: [PATCH] fix: debug prod apk --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 0f3509a3..be4161d7 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -72,7 +72,7 @@ android { afterEvaluate { getTasks().getByPath(":app:assembleProdDebug").doLast { - def apkReleaseFile = android.applicationVariants.find { it.buildType.name == "release" && it.flavorName == "prod" }.outputs[0].outputFile + def apkReleaseFile = android.applicationVariants.find { it.buildType.name == "debug" && it.flavorName == "prod" }.outputs[0].outputFile //download the target apk println "Downloading target apk"