From 8b24876fd17391912dd5bbdcc598c87380f91fda Mon Sep 17 00:00:00 2001 From: Remy Moll Date: Tue, 22 Oct 2024 15:52:03 +0200 Subject: [PATCH] adjust path --- frontend/android/fastlane/Fastfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/android/fastlane/Fastfile b/frontend/android/fastlane/Fastfile index d03c6ca..352e303 100644 --- a/frontend/android/fastlane/Fastfile +++ b/frontend/android/fastlane/Fastfile @@ -21,10 +21,10 @@ platform :android do track: 'alpha', skip_upload_apk: true, skip_upload_changelogs: true, - aab: "../../build/app/outputs/bundle/release/app-release.aab", + aab: "../build/app/outputs/bundle/release/app-release.aab", # this is the default output of flutter build ... --release # in particular this the build folder lies in the flutter root folder - # hence the relative path + # this is the parent folder for the android folder ) end @@ -41,10 +41,10 @@ platform :android do track: "production", skip_upload_apk: true, skip_upload_changelogs: true, - aab: "../../build/app/outputs/bundle/release/app-release.aab", + aab: "../build/app/outputs/bundle/release/app-release.aab", # this is the default output of flutter build ... --release # in particular this the build folder lies in the flutter root folder - # hence the relative path + # this is the parent folder for the android folder ) end end