-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore UIKeyboardWillShowNotification on macOS
- Loading branch information
Showing
4 changed files
with
113 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
186 | ||
188 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,64 +1,88 @@ | ||
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 | ||
|
||
## iOS | ||
|
||
### ios certs | ||
|
||
```sh | ||
[bundle exec] fastlane ios certs | ||
``` | ||
fastlane ios certs | ||
``` | ||
|
||
Check all certs and provisioning profiles from github | ||
|
||
### ios apn | ||
|
||
```sh | ||
[bundle exec] fastlane ios apn | ||
``` | ||
fastlane ios apn | ||
``` | ||
|
||
Generate new push certs | ||
|
||
### ios upload_symbols | ||
|
||
```sh | ||
[bundle exec] fastlane ios upload_symbols | ||
``` | ||
fastlane ios upload_symbols | ||
``` | ||
|
||
Upload symbols to FirebaseCrashlytics | ||
|
||
### ios push | ||
|
||
```sh | ||
[bundle exec] fastlane ios push | ||
``` | ||
fastlane ios push | ||
``` | ||
|
||
Build and push to iTunes Connect | ||
|
||
### ios vers | ||
|
||
```sh | ||
[bundle exec] fastlane ios vers | ||
``` | ||
fastlane ios vers | ||
``` | ||
|
||
Print version | ||
|
||
### ios screenshots | ||
|
||
```sh | ||
[bundle exec] fastlane ios screenshots | ||
``` | ||
fastlane ios screenshots | ||
``` | ||
|
||
Take screenshots | ||
|
||
### ios metadata | ||
|
||
```sh | ||
[bundle exec] fastlane ios metadata | ||
``` | ||
fastlane ios metadata | ||
``` | ||
|
||
Upload metadata | ||
|
||
### ios updateadhoc | ||
|
||
```sh | ||
[bundle exec] fastlane ios updateadhoc | ||
``` | ||
fastlane ios updateadhoc | ||
``` | ||
|
||
Make sure all devices are added to the ad-hoc profile | ||
|
||
---- | ||
|
||
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). | ||
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). |