Include Google Play Metadata

This commit is contained in:
2017-12-22 22:53:37 +01:00
parent 59e1165c89
commit 29cd6016ed
22 changed files with 88 additions and 0 deletions

2
fastlane/Appfile Normal file
View 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
View 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

View File

@@ -0,0 +1 @@
Better screen size detection

View 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.

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

View File

@@ -0,0 +1 @@
A new way to manage your tasks!

View File

@@ -0,0 +1 @@
DoNext

View File

@@ -0,0 +1 @@
Better screen size detection

View 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.

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

View File

@@ -0,0 +1 @@
A new way to manage your tasks!

1
metadata/en-US/title.txt Normal file
View File

@@ -0,0 +1 @@
DoNext

0
metadata/en-US/video.txt Normal file
View File