Skip to content

Commit

Permalink
chore: Add fastlane metadata (#1763)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamareebjamal committed Jul 2, 2019
1 parent dde0f30 commit e12e8d8
Show file tree
Hide file tree
Showing 14 changed files with 76 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -33,3 +33,6 @@ UserInterfaceState.xcuserstate

/app/build
*apk
.project
local.properties
.tool-versions
2 changes: 2 additions & 0 deletions fastlane/Appfile
@@ -0,0 +1,2 @@
json_key_file("./scripts/fastlane.json") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
package_name("com.eventyay.organizer") # e.g. com.krausefx.app
38 changes: 38 additions & 0 deletions fastlane/Fastfile
@@ -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
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/12.txt
@@ -0,0 +1 @@
Several features and bugfixes
15 changes: 15 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/13.txt
@@ -0,0 +1,15 @@
🚀 Features and Enhancements

- feat: Implement list of roles

🐛 Bug Fixes

- fix: Prevent empty view layout from showing when items are present
- fix: Retain 'Use picker' checkbox state on screen rotation

🧰 Maintenance

- chore: Simplify the app
- chore: Dismiss RoleInviteFragment after invitation is sent
- chore: Add 'Use another URL' button for base URL
- chore: Remove option to change base URL in release build
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/7.txt
@@ -0,0 +1 @@
Bug Fixes
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/8.txt
@@ -0,0 +1 @@
Various bug fixes and internal enhancements
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/9.txt
@@ -0,0 +1 @@
Various bug fixes and internal enhancements
10 changes: 10 additions & 0 deletions fastlane/metadata/android/en-US/full_description.txt
@@ -0,0 +1,10 @@
Eventyay Organizer App provides event management features like:

- Event manager log in and sign up
- Manual attendee check in
- Attendee check in through QR code scan
- Basic event analytics
- Basic ticket management
- Event Detail
- Orders Detail
- Organizer Detail
Binary file added fastlane/metadata/android/en-US/images/icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/short_description.txt
@@ -0,0 +1 @@
Event management app for Organizers using Eventyay platform
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/title.txt
@@ -0,0 +1 @@
Eventyay Organizer App
Empty file.
2 changes: 2 additions & 0 deletions scripts/.gitignore
@@ -0,0 +1,2 @@
*.json
*.jks

0 comments on commit e12e8d8

Please sign in to comment.