- Fastlane completed

- Circleci config completed
 - Flavours build completed
This commit is contained in:
2023-08-07 15:01:51 +01:00
parent 377970a3fc
commit 03ee1dc249
29 changed files with 343 additions and 237 deletions

View File

@@ -16,23 +16,30 @@
default_platform(:android)
platform :android do
desc "Runs all the tests"
lane :test do
gradle(task: "test")
desc "Deploy a new Mono Weather version to the Google Play"
lane :deployMono do
gradle(
task: "clean bundle",
flavor: "MonoWeather",
build_type: "Release",
)
upload_to_play_store(
aab: "app/build/outputs/bundle/monoWeather/app-driver-release.aab",
json_key: "google-play-key.json",
package_name: "h_mal.appttude.com.monoWeather")
end
desc "Submit a new Beta Build to Crashlytics Beta"
lane :beta do
gradle(task: "clean assembleRelease")
crashlytics
# sh "your_script.sh"
# You can also use other beta testing services here
end
desc "Deploy a new version to the Google Play"
lane :deploy do
gradle(task: "clean assembleRelease")
upload_to_play_store
desc "Deploy a new Atlas Weather version to the Google Play"
lane :deployMono do
gradle(
task: "clean bundle",
flavor: "AtlasWeather",
build_type: "Release",
)
upload_to_play_store(
aab: "app/build/outputs/bundle/atlasWeather/app-driver-release.aab",
json_key: "google-play-key.json",
package_name: "h_mal.appttude.com.monoWeather")
end
end