|
39 | 39 | - [Track Event](#track-event)
|
40 | 40 | - [Handle Referrals](#handle-referrals)
|
41 | 41 | - [Troubleshooting](#troubleshooting)
|
| 42 | + - [Testing: Key Points](#testing-key-points) |
42 | 43 | - [Testing: Optional App Config](#testing-optional-app-config)
|
43 | 44 | - [Testing: Branch Analytics](#testing-branch-analytics)
|
44 | 45 | - [Testing: Simulating an Install](#testing-simulating-an-install)
|
|
48 | 49 | - [Link Data: Deep Link Properties](#link-data-deep-link-properties)
|
49 | 50 | - [Compiling: Cordova Dependencies](#compiling-cordova-dependencies)
|
50 | 51 | - [Compiling: Show Console Logs](#compiling-show-console-logs)
|
51 |
| - - [Compiling: Incompatible Plugins](#compiling-incompatible-plugins) |
| 52 | + - [Compiling: Updating Branch SDK](#compiling-updating-branch-sdk) |
| 53 | + - [Compiling: Incompatible Plugins](#compiling-incompatible-plugins) |
52 | 54 | - [Compiling: Errors](#compiling-errors)
|
53 | 55 |
|
54 | 56 | ## Getting Started
|
|
565 | 567 |
|
566 | 568 | ## Troubleshooting
|
567 | 569 |
|
| 570 | +- #### Testing: Key Points |
| 571 | + |
| 572 | + - Need to checkmark "app uses IDFA and GAID" when submitting your app to the App Store and Google Play Store |
| 573 | + |
| 574 | + – Best to enable [Deepviews](https://dashboard.branch.io/settings/deepviews) ([Testing: Supported Platforms](#testing-supported-platforms)) |
| 575 | + |
568 | 576 | - #### Testing: Optional App Config
|
569 | 577 |
|
570 | 578 | ```xml
|
|
882 | 890 |
|
883 | 891 | - Chrome -> [chrome://inspect/#devices](chrome://inspect/#devices) -> Console
|
884 | 892 |
|
| 893 | +- #### Compiling: Updating Branch SDK |
| 894 | + |
| 895 | + ```bash |
| 896 | + # terminal |
| 897 | + cordova plugin remove io.branch.sdk |
| 898 | + cordova plugin remove branch-cordova-sdk |
| 899 | + ``` |
| 900 | + |
| 901 | + ```xml |
| 902 | + <!-- config.xml --> |
| 903 | + <plugin name="branch-cordova-sdk" spec="^2.5.0" /> |
| 904 | + ``` |
| 905 | + |
885 | 906 | - #### Compiling: Incompatible Plugins
|
886 | 907 |
|
887 | 908 | - The following plugins will not work with the Branch SDK
|
|
943 | 964 | ```
|
944 | 965 |
|
945 | 966 | - Don't use `cordova`, `hyphens`, or `underscores` in your bundle id (widget id)
|
946 |
| -
|
947 |
| - - error |
948 |
| - |
949 |
| - - Installing Branch plugin error. Reinstall Branch |
950 |
| - |
951 |
| - ```bash |
952 |
| - # terminal |
953 |
| - cordova plugin remove io.branch.sdk |
954 |
| - cordova plugin remove branch-cordova-sdk |
955 |
| - ``` |
956 |
| - |
957 |
| - ```xml |
958 |
| - <!-- config.xml --> |
959 |
| - <plugin name="branch-cordova-sdk" spec="^2.5.0" /> |
960 |
| - ``` |
|
0 commit comments