Files
donext/fastlane/Fastfile

23 lines
658 B
Plaintext
Raw Normal View History

2023-12-24 10:19:22 +01:00
default_platform(:android)
2017-12-22 22:53:37 +01:00
platform :android do
2025-11-09 15:27:11 -05:00
desc "Build, test, and deploy the production version to Google Play"
lane :deploy do
gradle(task: "testDebugUnitTest")
2025-11-09 15:27:11 -05:00
gradle(task: "clean :donextv2:bundleRelease")
upload_to_play_store(
2025-11-09 15:27:11 -05:00
track: "production",
aab: "donextv2/build/outputs/bundle/release/donextv2-release.aab"
)
2017-12-22 22:53:37 +01:00
end
2025-11-09 15:27:11 -05:00
desc "Build, test, and deploy to Google Play"
lane :internal do
gradle(task: "testDebugUnitTest")
gradle(task: "clean :donextv2:bundleRelease")
upload_to_play_store(
2025-11-09 15:27:11 -05:00
track: "internal",
aab: "donextv2/build/outputs/bundle/release/donextv2-release.aab"
)
2017-12-22 22:53:37 +01:00
end
2025-11-09 15:27:11 -05:00
end