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

Re-enable deferred components for Play Store builds #521

Merged
merged 2 commits into from
Jun 22, 2021
Merged
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
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