2021-02-05 22:09:54 +01:00
|
|
|
fastlane documentation
|
2022-03-02 16:53:50 +01:00
|
|
|
----
|
|
|
|
|
2021-02-05 22:09:54 +01:00
|
|
|
# Installation
|
|
|
|
|
|
|
|
Make sure you have the latest version of the Xcode command line tools installed:
|
|
|
|
|
2022-03-02 16:53:50 +01:00
|
|
|
```sh
|
2021-02-05 22:09:54 +01:00
|
|
|
xcode-select --install
|
|
|
|
```
|
|
|
|
|
2022-03-02 16:53:50 +01:00
|
|
|
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
|
2021-02-05 22:09:54 +01:00
|
|
|
|
|
|
|
# Available Actions
|
2022-03-02 16:53:50 +01:00
|
|
|
|
2021-02-05 22:09:54 +01:00
|
|
|
## Android
|
2022-03-02 16:53:50 +01:00
|
|
|
|
2021-02-05 22:09:54 +01:00
|
|
|
### android test
|
2022-03-02 16:53:50 +01:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane android test
|
2021-02-05 22:09:54 +01:00
|
|
|
```
|
2022-03-02 16:53:50 +01:00
|
|
|
|
2021-02-05 22:09:54 +01:00
|
|
|
Run all the tests
|
2022-03-02 16:53:50 +01:00
|
|
|
|
2021-02-05 22:09:54 +01:00
|
|
|
### android deploy
|
2022-03-02 16:53:50 +01:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane android deploy
|
2021-02-05 22:09:54 +01:00
|
|
|
```
|
2022-03-02 16:53:50 +01:00
|
|
|
|
2021-02-10 12:34:55 +01:00
|
|
|
Deploy new version to Google Play and APK Store options: beta:false (default)
|
2022-03-02 16:53:50 +01:00
|
|
|
|
2021-02-10 12:34:55 +01:00
|
|
|
### android deployToPlaystore
|
2022-03-02 16:53:50 +01:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane android deployToPlaystore
|
2021-02-10 12:34:55 +01:00
|
|
|
```
|
2022-03-02 16:53:50 +01:00
|
|
|
|
2021-02-10 12:34:55 +01:00
|
|
|
Deploy new version to Play Store
|
2022-03-02 16:53:50 +01:00
|
|
|
|
2021-02-10 12:34:55 +01:00
|
|
|
### android deployToServer
|
2022-03-02 16:53:50 +01:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane android deployToServer
|
2021-02-10 12:34:55 +01:00
|
|
|
```
|
2022-03-02 16:53:50 +01:00
|
|
|
|
2021-02-10 12:34:55 +01:00
|
|
|
Deploy new version to server
|
2022-03-02 16:53:50 +01:00
|
|
|
|
2021-02-08 14:30:19 +01:00
|
|
|
### android deployToFDroid
|
2022-03-02 16:53:50 +01:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane android deployToFDroid
|
2021-02-08 14:30:19 +01:00
|
|
|
```
|
2022-03-02 16:53:50 +01:00
|
|
|
|
2021-02-08 14:30:19 +01:00
|
|
|
Deploy new version to F-Droid
|
2022-03-02 16:53:50 +01:00
|
|
|
|
2021-10-01 16:40:56 +02:00
|
|
|
### android checkTrackingAddedInDependencyUsingIzzyScript
|
2022-03-02 16:53:50 +01:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane android checkTrackingAddedInDependencyUsingIzzyScript
|
2021-07-14 12:40:59 +02:00
|
|
|
```
|
2022-03-02 16:53:50 +01:00
|
|
|
|
2021-10-01 16:40:56 +02:00
|
|
|
Check if tracking added in some dependency using Izzy's script
|
2022-03-02 16:53:50 +01:00
|
|
|
|
2021-10-01 16:40:56 +02:00
|
|
|
### android checkTrackingAddedInDependencyUsingExodus
|
2022-03-02 16:53:50 +01:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane android checkTrackingAddedInDependencyUsingExodus
|
2021-10-01 16:40:56 +02:00
|
|
|
```
|
2022-03-02 16:53:50 +01:00
|
|
|
|
2021-10-01 16:40:56 +02:00
|
|
|
Check if tracking added in some dependency using exodus
|
2022-03-02 16:53:50 +01:00
|
|
|
|
2021-02-22 12:28:12 +01:00
|
|
|
### android createGitHubDraftRelease
|
2022-03-02 16:53:50 +01:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane android createGitHubDraftRelease
|
2021-02-22 12:28:12 +01:00
|
|
|
```
|
2022-03-02 16:53:50 +01:00
|
|
|
|
2021-02-22 12:28:12 +01:00
|
|
|
Create GitHub draft release
|
2021-02-05 22:09:54 +01:00
|
|
|
|
2022-03-02 16:53:50 +01:00
|
|
|
### android dryRun
|
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane android dryRun
|
|
|
|
```
|
|
|
|
|
2022-03-29 21:20:44 +02:00
|
|
|
Dry run - check tracking added for all flavors
|
2022-03-02 16:53:50 +01:00
|
|
|
|
2021-02-05 22:09:54 +01:00
|
|
|
----
|
|
|
|
|
2021-07-13 17:40:32 +02:00
|
|
|
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
|
2022-03-02 16:53:50 +01:00
|
|
|
|
|
|
|
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).
|