diff --git a/fastlane/Appfile b/fastlane/Appfile new file mode 100644 index 0000000..8d1881b --- /dev/null +++ b/fastlane/Appfile @@ -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 diff --git a/fastlane/Fastfile b/fastlane/Fastfile new file mode 100644 index 0000000..5d03fec --- /dev/null +++ b/fastlane/Fastfile @@ -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 diff --git a/fastlane/metadata/android/en-US/changelogs/18.txt b/fastlane/metadata/android/en-US/changelogs/18.txt new file mode 100644 index 0000000..fe33840 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/18.txt @@ -0,0 +1 @@ +Better screen size detection \ No newline at end of file diff --git a/fastlane/metadata/android/en-US/full_description.txt b/fastlane/metadata/android/en-US/full_description.txt new file mode 100644 index 0000000..282c700 --- /dev/null +++ b/fastlane/metadata/android/en-US/full_description.txt @@ -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. \ No newline at end of file diff --git a/fastlane/metadata/android/en-US/images/featureGraphic.png b/fastlane/metadata/android/en-US/images/featureGraphic.png new file mode 100644 index 0000000..fab322c Binary files /dev/null and b/fastlane/metadata/android/en-US/images/featureGraphic.png differ diff --git a/fastlane/metadata/android/en-US/images/icon.png b/fastlane/metadata/android/en-US/images/icon.png new file mode 100644 index 0000000..78c1e6f Binary files /dev/null and b/fastlane/metadata/android/en-US/images/icon.png differ diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/Screenshot_1513978560.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/Screenshot_1513978560.png new file mode 100644 index 0000000..72a603b Binary files /dev/null and b/fastlane/metadata/android/en-US/images/phoneScreenshots/Screenshot_1513978560.png differ diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/Screenshot_1513978690.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/Screenshot_1513978690.png new file mode 100644 index 0000000..8b813e9 Binary files /dev/null and b/fastlane/metadata/android/en-US/images/phoneScreenshots/Screenshot_1513978690.png differ diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/Screenshot_1513978697.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/Screenshot_1513978697.png new file mode 100644 index 0000000..8a4655d Binary files /dev/null and b/fastlane/metadata/android/en-US/images/phoneScreenshots/Screenshot_1513978697.png differ diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/Screenshot_1513978756.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/Screenshot_1513978756.png new file mode 100644 index 0000000..5fc0f21 Binary files /dev/null and b/fastlane/metadata/android/en-US/images/phoneScreenshots/Screenshot_1513978756.png differ diff --git a/fastlane/metadata/android/en-US/images/sevenInchScreenshots/Screenshot_1513977925.png b/fastlane/metadata/android/en-US/images/sevenInchScreenshots/Screenshot_1513977925.png new file mode 100644 index 0000000..f0f6584 Binary files /dev/null and b/fastlane/metadata/android/en-US/images/sevenInchScreenshots/Screenshot_1513977925.png differ diff --git a/fastlane/metadata/android/en-US/images/sevenInchScreenshots/Screenshot_1513977930.png b/fastlane/metadata/android/en-US/images/sevenInchScreenshots/Screenshot_1513977930.png new file mode 100644 index 0000000..29e78d1 Binary files /dev/null and b/fastlane/metadata/android/en-US/images/sevenInchScreenshots/Screenshot_1513977930.png differ diff --git a/fastlane/metadata/android/en-US/images/sevenInchScreenshots/Screenshot_1513977965.png b/fastlane/metadata/android/en-US/images/sevenInchScreenshots/Screenshot_1513977965.png new file mode 100644 index 0000000..8f5091d Binary files /dev/null and b/fastlane/metadata/android/en-US/images/sevenInchScreenshots/Screenshot_1513977965.png differ diff --git a/fastlane/metadata/android/en-US/short_description.txt b/fastlane/metadata/android/en-US/short_description.txt new file mode 100644 index 0000000..9908045 --- /dev/null +++ b/fastlane/metadata/android/en-US/short_description.txt @@ -0,0 +1 @@ +A new way to manage your tasks! \ No newline at end of file diff --git a/fastlane/metadata/android/en-US/title.txt b/fastlane/metadata/android/en-US/title.txt new file mode 100644 index 0000000..b703f3b --- /dev/null +++ b/fastlane/metadata/android/en-US/title.txt @@ -0,0 +1 @@ +DoNext \ No newline at end of file diff --git a/fastlane/metadata/android/en-US/video.txt b/fastlane/metadata/android/en-US/video.txt new file mode 100644 index 0000000..e69de29 diff --git a/metadata/en-US/changelogs/18.txt b/metadata/en-US/changelogs/18.txt new file mode 100644 index 0000000..fe33840 --- /dev/null +++ b/metadata/en-US/changelogs/18.txt @@ -0,0 +1 @@ +Better screen size detection \ No newline at end of file diff --git a/metadata/en-US/full_description.txt b/metadata/en-US/full_description.txt new file mode 100644 index 0000000..282c700 --- /dev/null +++ b/metadata/en-US/full_description.txt @@ -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. \ No newline at end of file diff --git a/metadata/en-US/images/icon.png b/metadata/en-US/images/icon.png new file mode 100644 index 0000000..78c1e6f Binary files /dev/null and b/metadata/en-US/images/icon.png differ diff --git a/metadata/en-US/short_description.txt b/metadata/en-US/short_description.txt new file mode 100644 index 0000000..9908045 --- /dev/null +++ b/metadata/en-US/short_description.txt @@ -0,0 +1 @@ +A new way to manage your tasks! \ No newline at end of file diff --git a/metadata/en-US/title.txt b/metadata/en-US/title.txt new file mode 100644 index 0000000..b703f3b --- /dev/null +++ b/metadata/en-US/title.txt @@ -0,0 +1 @@ +DoNext \ No newline at end of file diff --git a/metadata/en-US/video.txt b/metadata/en-US/video.txt new file mode 100644 index 0000000..e69de29