97 lines
1.8 KiB
Markdown
Raw Normal View History

2021-02-05 22:09:54 +01:00
fastlane documentation
----
2021-02-05 22:09:54 +01:00
# Installation
Make sure you have the latest version of the Xcode command line tools installed:
```sh
2021-02-05 22:09:54 +01:00
xcode-select --install
```
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
2021-02-05 22:09:54 +01:00
# Available Actions
2021-02-05 22:09:54 +01:00
## Android
2021-02-05 22:09:54 +01:00
### android test
```sh
[bundle exec] fastlane android test
2021-02-05 22:09:54 +01:00
```
2021-02-05 22:09:54 +01:00
Run all the tests
2021-02-05 22:09:54 +01:00
### android deploy
```sh
[bundle exec] fastlane android deploy
2021-02-05 22:09:54 +01:00
```
Deploy new version to Google Play and APK Store options: beta:false (default)
### android deployToPlaystore
```sh
[bundle exec] fastlane android deployToPlaystore
```
Deploy new version to Play Store
### android deployToServer
```sh
[bundle exec] fastlane android deployToServer
```
Deploy new version to server
### android deployToFDroid
```sh
[bundle exec] fastlane android deployToFDroid
```
Deploy new version to F-Droid
### android checkTrackingAddedInDependencyUsingIzzyScript
```sh
[bundle exec] fastlane android checkTrackingAddedInDependencyUsingIzzyScript
```
Check if tracking added in some dependency using Izzy's script
### android checkTrackingAddedInDependencyUsingExodus
```sh
[bundle exec] fastlane android checkTrackingAddedInDependencyUsingExodus
```
Check if tracking added in some dependency using exodus
### android createGitHubDraftRelease
```sh
[bundle exec] fastlane android createGitHubDraftRelease
```
Create GitHub draft release
2021-02-05 22:09:54 +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
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.
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).