diff --git a/.circleci/config.yml b/.circleci/config.yml index d395d0a..bb879d1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 \ No newline at end of file + - run_instrumentation_test \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle index 2b5cb82..088fe52 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -91,6 +91,7 @@ android { } monoWeather { applicationId "com.appttude.h_mal.monoWeather" + versionCode 7 versionName "4.2.0" } diff --git a/fastlane/Fastfile b/fastlane/Fastfile index f8fd544..3d41b9a 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -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 \ No newline at end of file