Compare commits

..

No commits in common. "48555e74293cabe9e863fa8df2804c13dfee5d82" and "c832461f29993b3efc8a088e54536a7cdc7aa297" have entirely different histories.

View File

@ -21,10 +21,10 @@ platform :android do
track: 'alpha', track: 'alpha',
skip_upload_apk: true, skip_upload_apk: true,
skip_upload_changelogs: 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 # this is the default output of flutter build ... --release
# in particular this the build folder lies in the flutter root folder # in particular this the build folder lies in the flutter root folder
# this is the parent folder for the android folder # hence the relative path
) )
end end
@ -41,10 +41,10 @@ platform :android do
track: "production", track: "production",
skip_upload_apk: true, skip_upload_apk: true,
skip_upload_changelogs: 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 # this is the default output of flutter build ... --release
# in particular this the build folder lies in the flutter root folder # in particular this the build folder lies in the flutter root folder
# this is the parent folder for the android folder # hence the relative path
) )
end end
end end