...
Appoxee SDK will trigger deep linking in the same manner the iOS will trigger deep linking (Using URL Schemes to Communicate with Apps), when .
Deep linking can be sent using the following:
- apx_dpl is supplied as an extra field key, with a valid URL scheme value
...
- Sending a push action with a deep link action.
Please note that you will need to add the following code to your app:
Code Block |
---|
#pragma mark - Schemes //Based on apple this mehod will be deprecated - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation { [self handleScheme:url]; return YES; } //New version of the above method - (BOOL)application:(UIApplication *)application openURL:(nonnull NSURL *)url options:(nonnull NSDictionary<NSString *,id> *)options { [self handleScheme:url]; return YES; } - (void)handleScheme:(NSURL *)scheme { // Your implementation of a url scheme. } |