Update screenshots and metadata

Update pipeline to build new module
This commit is contained in:
Geoffroy Bonneville
2025-11-08 14:33:39 -05:00
parent 157b577397
commit 92263bc4ec
20 changed files with 33 additions and 33 deletions

View File

@@ -1,38 +1,26 @@
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
# https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
# https://docs.fastlane.tools/plugins/available-plugins
#
# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane
default_platform(:android)
platform :android do
desc "Runs all the tests"
desc "Run all unit tests"
lane :test do
gradle(task: "test")
gradle(task: "testDebugUnitTest")
end
desc "Submit a new Beta Build to Crashlytics Beta"
desc "Build a release APK or AAB for beta testing"
lane :beta do
gradle(task: "clean assembleRelease")
crashlytics
# sh "your_script.sh"
# You can also use other beta testing services here
gradle(task: "clean bundleRelease")
upload_to_play_store(
track: "beta",
aab: "app/build/outputs/bundle/release/app-release.aab"
)
end
desc "Deploy a new version to the Google Play"
desc "Deploy the production version to Google Play"
lane :deploy do
gradle(task: "clean assembleRelease")
upload_to_play_store
gradle(task: "clean bundleRelease")
upload_to_play_store(
track: "production",
aab: "app/build/outputs/bundle/release/app-release.aab"
)
end
end