I am working on a project which uses Branch iOS SDK for app referral & deep linking. Previous developers were already installed Branch SDK by adding it manually to the project. Now I am getting method not found error when I use
- (BOOL)continueUserActivity:(NSUserActivity *)userActivity;
method to support iOS 9 universal deep linking. My assumption is that the error is occurring because of old Branch SDK which doesn't support universal deep linking. Now I want to know how to check version of Branch SDK using in the project, so that I can check whether it support universal deep linking or not ?
Alex from Branch.io here:
You can check the version number in the Info.plist file inside the framework package. Look for these lines:
Universal Links have been supported since v0.11. However, even if you have a version with support, you really should be using the latest version at all times since we're constantly adding new functionality and handling for edge cases from Apple and others (there was a new one just this week with iOS 10.2, for example)