Merge branch 'main_mono' into master

This commit is contained in:
2023-12-25 19:02:19 +00:00
committed by GitHub
3 changed files with 9 additions and 8 deletions

View File

@@ -172,7 +172,7 @@ workflows:
only:
- main_mono
requires:
- build-and-test
- run_instrumentation_test
build-release-atlas:
jobs:
- build-and-test:
@@ -199,4 +199,4 @@ workflows:
only:
- main_atlas
requires:
- build-and-test
- run_instrumentation_test

View File

@@ -91,6 +91,7 @@ android {
}
monoWeather {
applicationId "com.appttude.h_mal.monoWeather"
versionCode 7
versionName "4.2.0"
}

View File

@@ -18,28 +18,28 @@ default_platform(:android)
platform :android do
desc "Deploy a new Mono Weather version to the Google Play"
lane :deployMono do
lane :deployMonoWeather do
gradle(
task: "clean bundle",
flavor: "MonoWeather",
build_type: "Release",
)
upload_to_play_store(
aab: "app/build/outputs/bundle/monoWeather/app-driver-release.aab",
aab: "app/build/outputs/bundle/monoWeatherRelease/app-monoWeather-release.aab",
json_key: "google-play-key.json",
package_name: "h_mal.appttude.com.monoWeather")
package_name: "com.appttude.h_mal.monoWeather")
end
desc "Deploy a new Atlas Weather version to the Google Play"
lane :deployMono do
lane :deployAtlasWeather do
gradle(
task: "clean bundle",
flavor: "AtlasWeather",
build_type: "Release",
)
upload_to_play_store(
aab: "app/build/outputs/bundle/atlasWeather/app-driver-release.aab",
aab: "app/build/outputs/bundle/atlasWeatherRelease/app-atlas-release.aab",
json_key: "google-play-key.json",
package_name: "h_mal.appttude.com.monoWeather")
package_name: "com.appttude.h_mal.atlas_weather")
end
end