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
Have Branch treat this device / session as a debug session, causing more information to be logged, and info to be available in the debug tab of the dashboard.
529
+
Have Branch treat this device / session as a debug session, causing more information to be logged,
530
+
and info to be available in the debug tab of the dashboard.
530
531
531
532
@warning This should not be used in production.
532
533
*/
533
534
- (void)setDebug;
534
535
536
+
/**
537
+
@brief Use the `validateSDKIntegration` method as a debugging aid to assure that you've
538
+
integrated the Branch SDK correctly.
539
+
540
+
@discussion Use the SDK integration validator to check that you've added the Branch SDK and
541
+
handle deep links correctly when you first integrate Branch into your app.
542
+
543
+
To check your integration, add the line:
544
+
545
+
```
546
+
[[Branch getInstance] validateSDKIntegration];
547
+
```
548
+
549
+
in your `application:didFinishLaunchingWithOptions:` method in your app delegate. Then run your
550
+
app and follow the instructions.
551
+
552
+
This is for testing in development only! Make sure you remove or comment out this line of code in
0 commit comments