Update fast file

This commit is contained in:
Michael Speed 2024-02-10 13:43:04 +01:00
parent e969671c0a
commit ac20463de6
2 changed files with 3 additions and 3 deletions

View File

@ -74,7 +74,7 @@ jobs:
working-directory: android
# The aab bundle cannot install easily on device. Build an APK to publish on GH
- name: Build APK
run: flutter build apk --no-tree-shake-icons -v
run: flutter build apk --no-tree-shake-icons
env:
FCI_KEYSTORE_PATH: 'meditokey.jks' # The file is created in the previous step
FCI_KEY_ALIAS: ${{ secrets.FCI_KEY_ALIAS }}

View File

@ -37,7 +37,7 @@ platform :android do
desc "Submit a new beta build to Google Play"
lane :beta do
set_environment_values(ENV["STAGING_URL"], ENV["STAGING_INIT_TOKEN"], ENV["SENTRY_DSN"])
sh "flutter build appbundle -v"
sh "flutter build appbundle --no-tree-shake-icons"
upload_to_play_store(
track: 'beta',
aab: '../build/app/outputs/bundle/release/app-release.aab',
@ -67,7 +67,7 @@ platform :android do
desc "Submit a new production build to Google Play"
lane :production do
set_environment_values(ENV["PROD_URL"], ENV["PROD_INIT_TOKEN"], ENV["SENTRY_DSN"])
sh "flutter build appbundle -v"
sh "flutter build appbundle --no-tree-shake-icons"
upload_to_play_store(
track: 'production',
aab: '../build/app/outputs/bundle/release/app-release.aab',