Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • 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 appSee example below:

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.
}