Add basic support for Fastlane

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
tobiasKaminsky 2021-01-27 14:09:02 +01:00
parent 4866f45495
commit 022419ad98
No known key found for this signature in database
GPG key ID: 0E00D4D47D0C5AF7
2 changed files with 20 additions and 0 deletions

2
fastlane/Appfile Normal file
View file

@ -0,0 +1,2 @@
json_key_file "~/.gradle/fastlane.json"
package_name "com.nextcloud.talk2"

18
fastlane/Fastfile Normal file
View file

@ -0,0 +1,18 @@
# This is the minimum version number required.
fastlane_version "2.58.0"
skip_docs
## public lanes
desc "Upload Alpha version to play store"
lane :uploadAlphaToPlayStore do |options|
upload_to_play_store(
skip_upload_images: true,
skip_upload_aab: true,
skip_upload_changelogs: true,
skip_upload_metadata: true,
track: 'alpha',
apk: "~/apks-talk/android-talk-" + options[:version] + ".apk",
)
end