2021-02-03 20:51:03 +00:00
|
|
|
fastlane documentation
|
2022-01-20 16:40:13 +00:00
|
|
|
----
|
|
|
|
|
2021-02-03 20:51:03 +00:00
|
|
|
# Installation
|
|
|
|
|
|
|
|
Make sure you have the latest version of the Xcode command line tools installed:
|
|
|
|
|
2022-01-20 16:40:13 +00:00
|
|
|
```sh
|
2021-02-03 20:51:03 +00:00
|
|
|
xcode-select --install
|
|
|
|
```
|
|
|
|
|
2022-01-20 16:40:13 +00:00
|
|
|
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
|
2021-02-03 20:51:03 +00:00
|
|
|
|
|
|
|
# Available Actions
|
2022-01-20 16:40:13 +00:00
|
|
|
|
2021-02-03 20:51:03 +00:00
|
|
|
## Android
|
2022-01-20 16:40:13 +00:00
|
|
|
|
2021-02-04 00:07:03 +00:00
|
|
|
### android build_debug
|
2022-01-20 16:40:13 +00:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane android build_debug
|
2021-02-04 00:07:03 +00:00
|
|
|
```
|
2022-01-20 16:40:13 +00:00
|
|
|
|
2021-02-04 00:07:03 +00:00
|
|
|
Build Debug
|
2022-01-20 16:40:13 +00:00
|
|
|
|
2021-02-08 17:00:43 +00:00
|
|
|
### android build_production
|
2022-01-20 16:40:13 +00:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane android build_production
|
2021-02-08 17:00:43 +00:00
|
|
|
```
|
2022-01-20 16:40:13 +00:00
|
|
|
|
2021-02-08 17:00:43 +00:00
|
|
|
Build Production
|
2022-01-20 16:40:13 +00:00
|
|
|
|
2023-12-01 18:08:16 +00:00
|
|
|
### android build_production_fdroid
|
2023-07-24 21:42:08 +00:00
|
|
|
|
|
|
|
```sh
|
2023-12-01 18:08:16 +00:00
|
|
|
[bundle exec] fastlane android build_production_fdroid
|
2023-07-24 21:42:08 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Build Production fdroid
|
|
|
|
|
2021-02-03 20:51:03 +00:00
|
|
|
### android build
|
2022-01-20 16:40:13 +00:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane android build
|
2021-02-03 20:51:03 +00:00
|
|
|
```
|
2022-01-20 16:40:13 +00:00
|
|
|
|
2021-02-03 20:51:03 +00:00
|
|
|
Build
|
2022-01-20 16:40:13 +00:00
|
|
|
|
2021-02-04 00:07:03 +00:00
|
|
|
### android alpha
|
2022-01-20 16:40:13 +00:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane android alpha
|
2021-02-04 00:07:03 +00:00
|
|
|
```
|
2022-01-20 16:40:13 +00:00
|
|
|
|
2021-02-04 00:07:03 +00:00
|
|
|
Deploy a new version to the Google Play as Alpha
|
2022-01-20 16:40:13 +00:00
|
|
|
|
2021-02-03 20:51:03 +00:00
|
|
|
### android beta
|
2022-01-20 16:40:13 +00:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane android beta
|
2021-02-03 20:51:03 +00:00
|
|
|
```
|
2022-01-20 16:40:13 +00:00
|
|
|
|
2021-02-03 20:51:03 +00:00
|
|
|
Deploy a new version to the Google Play as Beta
|
2022-01-20 16:40:13 +00:00
|
|
|
|
2021-02-03 20:51:03 +00:00
|
|
|
### android deploy
|
2022-01-20 16:40:13 +00:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane android deploy
|
2021-02-03 20:51:03 +00:00
|
|
|
```
|
2022-01-20 16:40:13 +00:00
|
|
|
|
2021-02-03 20:51:03 +00:00
|
|
|
Deploy a new version to the Google Play
|
|
|
|
|
|
|
|
----
|
|
|
|
|
2022-01-20 16:40:13 +00:00
|
|
|
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).
|