Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Commit

Permalink
Re-enable deferred loading (#731)
Browse files Browse the repository at this point in the history
* Re-enable deferred loading

* add appbundle building to CI

* Update build.yml
  • Loading branch information
guidezpl authored Jul 11, 2022
1 parent 171ee9b commit 9212aec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
target: ["apk --debug", "ios --no-codesign", macos, web]
target: ["apk --debug", "appbundle --debug", "ios --no-codesign", macos, web]
steps:
# Set up Flutter.
- name: Clone Flutter repository with master channel
Expand Down
4 changes: 2 additions & 2 deletions android/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ platform :android do

desc "Submit a new beta build to Google Play"
lane :beta do
sh "flutter build appbundle -v --no-deferred-components"
sh "flutter build appbundle -v"
upload_to_play_store(
track: 'beta',
aab: '../build/app/outputs/bundle/release/app-release.aab',
Expand All @@ -43,7 +43,7 @@ platform :android do

desc "Submit a new production build to Google Play"
lane :production do
sh "flutter build appbundle -v --no-deferred-components"
sh "flutter build appbundle -v"
upload_to_play_store(
track: 'production',
aab: '../build/app/outputs/bundle/release/app-release.aab',
Expand Down

0 comments on commit 9212aec

Please sign in to comment.