2021-02-05 22:09:54 +01:00
|
|
|
fastlane documentation
|
|
|
|
================
|
|
|
|
# Installation
|
|
|
|
|
|
|
|
Make sure you have the latest version of the Xcode command line tools installed:
|
|
|
|
|
|
|
|
```
|
|
|
|
xcode-select --install
|
|
|
|
```
|
|
|
|
|
|
|
|
Install _fastlane_ using
|
|
|
|
```
|
|
|
|
[sudo] gem install fastlane -NV
|
|
|
|
```
|
|
|
|
or alternatively using `brew install fastlane`
|
|
|
|
|
|
|
|
# Available Actions
|
|
|
|
## Android
|
|
|
|
### android test
|
|
|
|
```
|
|
|
|
fastlane android test
|
|
|
|
```
|
|
|
|
Run all the tests
|
|
|
|
### android deploy
|
|
|
|
```
|
|
|
|
fastlane android deploy
|
|
|
|
```
|
2021-02-10 12:34:55 +01:00
|
|
|
Deploy new version to Google Play and APK Store options: beta:false (default)
|
|
|
|
### android deployToPlaystore
|
|
|
|
```
|
|
|
|
fastlane android deployToPlaystore
|
|
|
|
```
|
|
|
|
Deploy new version to Play Store
|
|
|
|
### android deployToServer
|
|
|
|
```
|
|
|
|
fastlane android deployToServer
|
|
|
|
```
|
|
|
|
Deploy new version to server
|
2021-02-08 14:30:19 +01:00
|
|
|
### android deployToFDroid
|
|
|
|
```
|
|
|
|
fastlane android deployToFDroid
|
|
|
|
```
|
|
|
|
Deploy new version to F-Droid
|
2021-10-01 16:40:56 +02:00
|
|
|
### android checkTrackingAddedInDependencyUsingIzzyScript
|
2021-07-14 12:40:59 +02:00
|
|
|
```
|
2021-10-01 16:40:56 +02:00
|
|
|
fastlane android checkTrackingAddedInDependencyUsingIzzyScript
|
2021-07-14 12:40:59 +02:00
|
|
|
```
|
2021-10-01 16:40:56 +02:00
|
|
|
Check if tracking added in some dependency using Izzy's script
|
|
|
|
### android checkTrackingAddedInDependencyUsingExodus
|
|
|
|
```
|
|
|
|
fastlane android checkTrackingAddedInDependencyUsingExodus
|
|
|
|
```
|
|
|
|
Check if tracking added in some dependency using exodus
|
2021-02-22 12:28:12 +01:00
|
|
|
### android createGitHubDraftRelease
|
|
|
|
```
|
|
|
|
fastlane android createGitHubDraftRelease
|
|
|
|
```
|
|
|
|
Create GitHub draft release
|
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.
|
2021-02-05 22:09:54 +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).
|