You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -233,6 +233,22 @@ let branch: Branch = Branch.getInstance()
233
233
234
234
##### Testing
235
235
236
+
##### Test your Branch Integration
237
+
238
+
Test your Branch Integration by calling `validateSDKIntegration` in your AppDelegate. Check your Xcode logs to make sure all the SDK Integration tests pass. Make sure to comment out or remove `validateSDKIntegration` in your production build.
239
+
240
+
```swift
241
+
Branch.getInstance().validateSDKIntegration()
242
+
```
243
+
244
+
```objc
245
+
[[Branch getInstance] validateSDKIntegration];
246
+
```
247
+
248
+
##### Test Deeplink routing for your Branch links
249
+
250
+
Append `?bnc_validate=true` to any of your app's Branch links and click it on your mobile device (not the Simulator!) to start the test. For instance, to validate a link like: `"https://<yourapp\>.app.link/NdJ6nFzRbK"` click on: `"https://<yourapp\>.app.link/NdJ6nFzRbK?bnc_validate=true"`
0 commit comments