Skip to content

Commit

Permalink
issue-635: Updated fastlane Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
geosaaga committed Oct 22, 2024
1 parent 0edb1f0 commit f6ba97f
Showing 1 changed file with 55 additions and 12 deletions.
67 changes: 55 additions & 12 deletions android/fastlane/README.md
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).

0 comments on commit f6ba97f

Please sign in to comment.