Skip to content

Commit

Permalink
docs: need to open Xcode for iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanneff committed Dec 15, 2016
1 parent 6dcb441 commit 7c9f1c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,27 +59,27 @@ gulp prerelease;
> **[optional]** Update [iOS SDK](https://github.com/BranchMetrics/ios-branch-deep-linking/tags) (will need to update `plugin.xml` dependencies if new iOS files)
```sh
./src/ios/dependencies/update.sh 0.12.14;
./src/ios/dependencies/update.sh 0.12.20;
```

### Test

> Modify `BRANCH_KEY` and `URI_SCHEME` and `config.xml` to values in [Branch Dashboard](https://dashboard.branch.io/settings/link)
```sh
gulp prerelease && cd testbed && npm install -g cordova && cordova platform remove ios && cordova platform remove android && cordova platform remove browser && cordova platform add ios && cordova platform add android && cordova plugin remove io.branch.sdk && cordova plugin add ../ --variable BRANCH_KEY=key_live_icCccJIpd7GlYY5oOmoEtpafuDiuyXhT --variable URI_SCHEME=enefftest;
gulp prerelease; cd testbed; npm install -g cordova; cordova platform remove ios; cordova platform remove android; cordova platform remove browser; cordova platform add ios; cordova platform add android; cordova plugin remove io.branch.sdk; cordova plugin add ../ --variable BRANCH_KEY=key_live_icCccJIpd7GlYY5oOmoEtpafuDiuyXhT --variable URI_SCHEME=enefftest;

# cordova plugin add branch-cordova-sdk --variable BRANCH_KEY=key_live_icCccJIpd7GlYY5oOmoEtpafuDiuyXhT --variable URI_SCHEME=enefftest;
```

> Validate all features on both `iOS` and `Android` on `device` only (no `simulator` or `TestFlight`)
```sh
cordova build ios --developmentTeam="PW4Q8885U7" --device;
cordova build ios && open -a Xcode platforms/ios/Branch\ Testing.xcworkspace;
```

```sh
cordova build android && cordova run android;
cordova build android; cordova run android;
chrome://inspect/#devices
```

Expand Down

0 comments on commit 7c9f1c1

Please sign in to comment.