commit baced1800d7a9b26130da21e1e0d1fa8af4841d3 Author: Hans-Christoph Steiner hans@eds.org Date: Fri May 10 15:38:23 2019 +0200
setup Fastlane to upload to Google Play --- .gitignore | 7 +++++++ fastlane/Appfile | 1 + fastlane/Fastfile | 27 +++++++++++++++++++++++++++ 3 files changed, 35 insertions(+)
diff --git a/.gitignore b/.gitignore index 8b28d8af..a8f09edc 100644 --- a/.gitignore +++ b/.gitignore @@ -68,3 +68,10 @@ orbotservice/src/main/libs/ orbotservice/src/main/jniLibs/ orbotservice/src/main/assets/armeabi/ orbotservice/src/main/assets/x86/ + +# emacs +*~ + +# Fastlane +/fastlane/report.xml +/fastlane/README.md diff --git a/fastlane/Appfile b/fastlane/Appfile new file mode 100644 index 00000000..ae4446a5 --- /dev/null +++ b/fastlane/Appfile @@ -0,0 +1 @@ +package_name("org.torproject.android") diff --git a/fastlane/Fastfile b/fastlane/Fastfile new file mode 100644 index 00000000..9dc185db --- /dev/null +++ b/fastlane/Fastfile @@ -0,0 +1,27 @@ +# 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 +# +# set SUPPLY_JSON_KEY_DATA before running, or do `. ~/.fastlane/bashrc` + +# Uncomment the line if you want fastlane to automatically update itself +# update_fastlane + +default_platform(:android) + +platform :android do + desc "Upload the app store metadata" + lane :metadata do + supply( + skip_upload_apk: true, + skip_upload_aab: true, + ) + end +end
tor-commits@lists.torproject.org