Skip to content

Commit

Permalink
docs: testing key points and update to lastest sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanneff authored Mar 31, 2017
1 parent 5176805 commit 6d1fd3e
Showing 1 changed file with 22 additions and 16 deletions.
38 changes: 22 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
- [Track Event](#track-event)
- [Handle Referrals](#handle-referrals)
- [Troubleshooting](#troubleshooting)
- [Testing: Key Points](#testing-key-points)
- [Testing: Optional App Config](#testing-optional-app-config)
- [Testing: Branch Analytics](#testing-branch-analytics)
- [Testing: Simulating an Install](#testing-simulating-an-install)
Expand All @@ -48,7 +49,8 @@
- [Link Data: Deep Link Properties](#link-data-deep-link-properties)
- [Compiling: Cordova Dependencies](#compiling-cordova-dependencies)
- [Compiling: Show Console Logs](#compiling-show-console-logs)
- [Compiling: Incompatible Plugins](#compiling-incompatible-plugins)
- [Compiling: Updating Branch SDK](#compiling-updating-branch-sdk)
- [Compiling: Incompatible Plugins](#compiling-incompatible-plugins)
- [Compiling: Errors](#compiling-errors)

## Getting Started
Expand Down Expand Up @@ -565,6 +567,12 @@

## Troubleshooting

- #### Testing: Key Points

- Need to checkmark "app uses IDFA and GAID" when submitting your app to the App Store and Google Play Store

– Best to enable [Deepviews](https://dashboard.branch.io/settings/deepviews) ([Testing: Supported Platforms](#testing-supported-platforms))

- #### Testing: Optional App Config

```xml
Expand Down Expand Up @@ -882,6 +890,19 @@

- Chrome -> [chrome://inspect/#devices](chrome://inspect/#devices) -> Console

- #### Compiling: Updating Branch SDK

```bash
# terminal
cordova plugin remove io.branch.sdk
cordova plugin remove branch-cordova-sdk
```

```xml
<!-- config.xml -->
<plugin name="branch-cordova-sdk" spec="^2.5.0" />
```

- #### Compiling: Incompatible Plugins

- The following plugins will not work with the Branch SDK
Expand Down Expand Up @@ -943,18 +964,3 @@
```

- Don't use `cordova`, `hyphens`, or `underscores` in your bundle id (widget id)

- error

- Installing Branch plugin error. Reinstall Branch

```bash
# terminal
cordova plugin remove io.branch.sdk
cordova plugin remove branch-cordova-sdk
```

```xml
<!-- config.xml -->
<plugin name="branch-cordova-sdk" spec="^2.5.0" />
```

0 comments on commit 6d1fd3e

Please sign in to comment.