From cefce62bc53c5231e3d311e62d4cfdea6b5ca2e0 Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Wed, 26 Aug 2020 16:24:35 -0300 Subject: [PATCH] [FIX] Upload to internal looking for the wrong path after #2171 (#2432) --- android/fastlane/Fastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/fastlane/Fastfile b/android/fastlane/Fastfile index 023db49f7..d73d3381f 100644 --- a/android/fastlane/Fastfile +++ b/android/fastlane/Fastfile @@ -35,7 +35,7 @@ platform :android do lane :beta do upload_to_play_store( track: 'internal', - aab: 'android/app/build/outputs/bundle/release/app-release.aab' + aab: 'android/app/build/outputs/bundle/playRelease/app-play-release.aab' ) end end