Last active
April 2, 2019 19:59
-
-
Save amygrinn/4893b083fa9ab82162ab25e4129a6a85 to your computer and use it in GitHub Desktop.
Fastlane appfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
json_key_file "fastlane/android-service-account.json" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
update_fastlane | |
default_platform(:android) | |
platform :android do | |
lane :beta do | |
upload_to_play_store( | |
track: 'beta', | |
apk: 'app-release.apk' | |
) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment