Include Google Play Metadata
2
fastlane/Appfile
Normal file
@@ -0,0 +1,2 @@
|
||||
json_key_file "/home/geoffroy/Documents/doNext/Google_Play_Android_Developer-f0d4d7f99344.json" # Path to the json secret file - Follow https://github.com/fastlane/supply#setup to get one
|
||||
package_name "com.wismna.geoffroy.donext" # e.g. com.krausefx.app
|
66
fastlane/Fastfile
Normal file
@@ -0,0 +1,66 @@
|
||||
# Customise this file, documentation can be found here:
|
||||
# https://github.com/fastlane/fastlane/tree/master/fastlane/docs
|
||||
# All available actions: https://docs.fastlane.tools/actions
|
||||
# can also be listed using the `fastlane actions` command
|
||||
|
||||
# Change the syntax highlighting to Ruby
|
||||
# All lines starting with a # are ignored when running `fastlane`
|
||||
|
||||
# If you want to automatically update fastlane if a new version is available:
|
||||
# update_fastlane
|
||||
|
||||
# This is the minimum version number required.
|
||||
# Update this, if you use features of a newer version
|
||||
fastlane_version "2.38.1"
|
||||
|
||||
default_platform :android
|
||||
|
||||
platform :android do
|
||||
before_all do
|
||||
# ENV["SLACK_URL"] = "https://hooks.slack.com/services/..."
|
||||
end
|
||||
|
||||
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: "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: "assembleRelease")
|
||||
supply
|
||||
end
|
||||
|
||||
# You can define as many lanes as you want
|
||||
|
||||
after_all do |lane|
|
||||
# This block is called, only if the executed lane was successful
|
||||
|
||||
# slack(
|
||||
# message: "Successfully deployed new App Update."
|
||||
# )
|
||||
end
|
||||
|
||||
error do |lane, exception|
|
||||
# slack(
|
||||
# message: exception.message,
|
||||
# success: false
|
||||
# )
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
# More information about multiple platforms in fastlane: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Platforms.md
|
||||
# All available actions: https://docs.fastlane.tools/actions
|
||||
|
||||
# fastlane reports which actions are used. No personal data is recorded.
|
||||
# Learn more at https://github.com/fastlane/fastlane#metrics
|
1
fastlane/metadata/android/en-US/changelogs/18.txt
Normal file
@@ -0,0 +1 @@
|
||||
Better screen size detection
|
7
fastlane/metadata/android/en-US/full_description.txt
Normal file
@@ -0,0 +1,7 @@
|
||||
DoNext is an innovative task application.
|
||||
You can create and arrange task lists, create, edit and delete tasks...
|
||||
But the emphasis is not a long list, as the more you have to do, the less you actually do!
|
||||
|
||||
Instead, focus only on the first task on the list:
|
||||
Swipe it to the left: it's done!
|
||||
Swipe it to the right: "nexted!". It goes to the end of the list and you can work on the next task.
|
BIN
fastlane/metadata/android/en-US/images/featureGraphic.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
fastlane/metadata/android/en-US/images/icon.png
Normal file
After Width: | Height: | Size: 9.7 KiB |
After Width: | Height: | Size: 112 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 62 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 72 KiB |
After Width: | Height: | Size: 67 KiB |
After Width: | Height: | Size: 73 KiB |
1
fastlane/metadata/android/en-US/short_description.txt
Normal file
@@ -0,0 +1 @@
|
||||
A new way to manage your tasks!
|
1
fastlane/metadata/android/en-US/title.txt
Normal file
@@ -0,0 +1 @@
|
||||
DoNext
|