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

Re-enable deferred loading #731

Merged
merged 3 commits into from
Jul 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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