Files
Weather-apps/fastlane/Fastfile
2023-08-13 00:27:07 +01:00

46 lines
1.3 KiB
Ruby

# 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 "Deploy a new Mono Weather version to the Google Play"
lane :deployMonoWeather do
gradle(
task: "clean bundle",
flavor: "MonoWeather",
build_type: "Release",
)
upload_to_play_store(
aab: "app/build/outputs/bundle/monoWeatherRelease/app-monoWeather-release.aab",
json_key: "google-play-key.json",
package_name: "com.appttude.h_mal.monoWeather")
end
desc "Deploy a new Atlas Weather version to the Google Play"
lane :deployAtlasWeather do
gradle(
task: "clean bundle",
flavor: "AtlasWeather",
build_type: "Release",
)
upload_to_play_store(
aab: "app/build/outputs/bundle/atlasWeatherRelease/app-atlas-release.aab",
json_key: "google-play-key.json",
package_name: "com.appttude.h_mal.atlas_weather")
end
end