Rocket.Chat.ReactNative/android/fastlane/Fastfile

36 lines
986 B
Plaintext
Raw Normal View History

# 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 "Upload App to Play Store Internal"
lane :beta do |options|
2023-06-21 12:53:33 +00:00
upload_to_play_store(
package_name: 'chat.rocket.android',
track: 'internal',
aab: 'android/app/build/outputs/bundle/playRelease/app-play-release.aab'
)
end
2021-07-19 21:04:45 +00:00
desc "Upload App to Internal App Sharing"
lane :internal_app_sharing do
upload_to_play_store_internal_app_sharing(
2023-06-21 12:53:33 +00:00
package_name: 'chat.rocket.android',
aab: 'android/app/build/outputs/bundle/playRelease/app-play-release.aab'
)
end
end