mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-05-25 03:42:13 +00:00
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
15 lines
467 B
Ruby
15 lines
467 B
Ruby
default_platform(:android)
|
|
|
|
platform :android do
|
|
desc "Submit a new App Bundle to the Google Play Internal Track"
|
|
lane :internal do
|
|
# This lane assumes that `flutter build appbundle` has already been run from the flutter root.
|
|
upload_to_play_store(
|
|
track: 'internal',
|
|
aab: 'build/app/outputs/bundle/release/app-release.aab',
|
|
skip_upload_metadata: true,
|
|
skip_upload_images: true,
|
|
skip_upload_screenshots: true
|
|
)
|
|
end
|
|
end
|