From 8a9d8acdb5f6c4565d629cb3010a27a634641f1d Mon Sep 17 00:00:00 2001 From: Elias Nahum Date: Wed, 22 May 2019 14:49:56 -0400 Subject: [PATCH] Fix Build script apk location (#2819) --- fastlane/Fastfile | 1 + 1 file changed, 1 insertion(+) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index a2cf9a5c1..1faea7478 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -519,6 +519,7 @@ platform :android do unless apk_path.nil? sh "mv #{apk_path} \"../#{app_name_sub}.apk\"" + lane_context[SharedValues::GRADLE_APK_OUTPUT_PATH] = "../#{app_name_sub}.apk" end end