-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
55 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,72 @@ | ||
fastlane documentation | ||
================ | ||
---- | ||
|
||
# Installation | ||
|
||
Make sure you have the latest version of the Xcode command line tools installed: | ||
|
||
``` | ||
```sh | ||
xcode-select --install | ||
``` | ||
|
||
Install _fastlane_ using | ||
``` | ||
[sudo] gem install fastlane -NV | ||
``` | ||
or alternatively using `brew install fastlane` | ||
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane) | ||
|
||
# Available Actions | ||
|
||
## Android | ||
### android increment_version | ||
``` | ||
fastlane android increment_version | ||
|
||
### android increment_android_version | ||
|
||
```sh | ||
[bundle exec] fastlane android increment_android_version | ||
``` | ||
|
||
Increment build and version number and push to repository - Build number = version code, version number = version name | ||
|
||
### android build_apk | ||
|
||
```sh | ||
[bundle exec] fastlane android build_apk | ||
``` | ||
|
||
Android build APK | ||
|
||
### android build_sign_and_deploy | ||
|
||
```sh | ||
[bundle exec] fastlane android build_sign_and_deploy | ||
``` | ||
|
||
Sign, build, and deploy to Google Play Store | ||
|
||
### android get_version_code_and_version_name | ||
|
||
```sh | ||
[bundle exec] fastlane android get_version_code_and_version_name | ||
``` | ||
|
||
Get version code and version name | ||
|
||
### android build_and_sign | ||
|
||
```sh | ||
[bundle exec] fastlane android build_and_sign | ||
``` | ||
|
||
Release for the Android beta | ||
|
||
### android deploy | ||
|
||
```sh | ||
[bundle exec] fastlane android deploy | ||
``` | ||
|
||
Deploy a new version to the Google Play | ||
|
||
---- | ||
|
||
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run. | ||
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools). | ||
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools). | ||
|
||
More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools). | ||
|
||
The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools). |