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: only:
- main_mono - main_mono
requires: requires:
- build-and-test - run_instrumentation_test
build-release-atlas: build-release-atlas:
jobs: jobs:
- build-and-test: - build-and-test:
@@ -199,4 +199,4 @@ workflows:
only: only:
- main_atlas - main_atlas
requires: requires:
- build-and-test - run_instrumentation_test

View File

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

View File

@@ -18,28 +18,28 @@ default_platform(:android)
platform :android do platform :android do
desc "Deploy a new Mono Weather version to the Google Play" desc "Deploy a new Mono Weather version to the Google Play"
lane :deployMono do lane :deployMonoWeather do
gradle( gradle(
task: "clean bundle", task: "clean bundle",
flavor: "MonoWeather", flavor: "MonoWeather",
build_type: "Release", build_type: "Release",
) )
upload_to_play_store( 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", json_key: "google-play-key.json",
package_name: "h_mal.appttude.com.monoWeather") package_name: "com.appttude.h_mal.monoWeather")
end end
desc "Deploy a new Atlas Weather version to the Google Play" desc "Deploy a new Atlas Weather version to the Google Play"
lane :deployMono do lane :deployAtlasWeather do
gradle( gradle(
task: "clean bundle", task: "clean bundle",
flavor: "AtlasWeather", flavor: "AtlasWeather",
build_type: "Release", build_type: "Release",
) )
upload_to_play_store( 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", json_key: "google-play-key.json",
package_name: "h_mal.appttude.com.monoWeather") package_name: "com.appttude.h_mal.atlas_weather")
end end
end end