Skip to content

docs(installation): add podfile project step to README #91

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,17 @@ If your Xcode project is not in the default directory, "ios", you can specify th

You can also pass in settings for each command. The only one currently supported is `fix-script`.

At the top of the `Podfile` add the project's custom build configuration with the created schemes. This step ensures your schemes carry over the correct debug and release setups:

```Ruby
project 'YourAwesomeApp',
'Staging' => :debug,
'Preflight' => :debug,
'Beta' => :release
```

Run `pod install` and it should be good to go.

## What Then?

The package is able to do three things:
Expand Down