Skip to content

Commit

Permalink
Added fastlane directory structure. Could not run fastlane on Ubuntu …
Browse files Browse the repository at this point in the history
…18.04.
  • Loading branch information
pla1 committed Aug 8, 2019
1 parent 7017247 commit 46b0544
Show file tree
Hide file tree
Showing 14 changed files with 56 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fastlane/Appfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
json_key_file("") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
package_name("com.fediphoto") # e.g. com.krausefx.app
38 changes: 38 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# 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 "Runs all the tests"
lane :test do
gradle(task: "test")
end

desc "Submit a new Beta Build to Crashlytics Beta"
lane :beta do
gradle(task: "clean assembleRelease")
crashlytics

# sh "your_script.sh"
# You can also use other beta testing services here
end

desc "Deploy a new version to the Google Play"
lane :deploy do
gradle(task: "clean assembleRelease")
upload_to_play_store
end
end
5 changes: 5 additions & 0 deletions fastlane/metadata/android/en-US/full_description.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Fedi Photo - quickly post photos to the Fediverse.

https://fediphoto.com


Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions fastlane/metadata/android/en-US/keywords.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
fediverse
pleroma
mastodon
photo
camera

1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/privacy_url.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://fediphoto.com/privacy-policy.html
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/short_description.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fedi Photo - quickly post photos to the Fediverse.
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/software_url.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://github.com/pla1/FediPhoto
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/support_url.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://github.com/pla1/FediPhoto/issues
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/title.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fedi Photo

0 comments on commit 46b0544

Please sign in to comment.