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
|
2025-11-08 14:33:39 -05:00
|
|
|
gradle(task: "testDebugUnitTest")
|
2025-11-09 15:27:11 -05:00
|
|
|
gradle(task: "clean :donextv2:bundleRelease")
|
2025-11-08 14:33:39 -05:00
|
|
|
upload_to_play_store(
|
2025-11-09 15:27:11 -05:00
|
|
|
track: "production",
|
|
|
|
|
aab: "donextv2/build/outputs/bundle/release/donextv2-release.aab"
|
2025-11-08 14:33:39 -05:00
|
|
|
)
|
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")
|
2025-11-08 14:33:39 -05:00
|
|
|
upload_to_play_store(
|
2025-11-09 15:27:11 -05:00
|
|
|
track: "internal",
|
|
|
|
|
aab: "donextv2/build/outputs/bundle/release/donextv2-release.aab"
|
2025-11-08 14:33:39 -05:00
|
|
|
)
|
2017-12-22 22:53:37 +01:00
|
|
|
end
|
2025-11-09 15:27:11 -05:00
|
|
|
end
|