Skip to content

Commit

Permalink
chore: minor comments cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Aditi3 authored and uerceg committed Feb 28, 2024
1 parent 71391a1 commit 5ab4fee
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(

- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
NSLog(@"Scheme based deep link opened an app: %@", url);
// Pass deep link to Adjust in order to potentially reattribute user.
// add your code below to handle deep link
// (e.g., open deep link content)
// url object contains the deep link
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(

- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
NSLog(@"Scheme based deep link opened an app: %@", url);
// Pass deep link to Adjust in order to potentially reattribute user.
// add your code below to handle deep link
// (e.g., open deep link content)
// url object contains the deep link
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,13 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
}

- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
NSLog(@"Scheme based deep link opened an app: %@", url);
// add your code below to handle deep link
// (e.g., open deep link content)
// url object contains the deep link

// Call the below method to send deep link to Adjust backend
[Adjust appWillOpenUrl:url];

return YES;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(

- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
NSLog(@"Scheme based deep link opened an app: %@", url);
// Pass deep link to Adjust in order to potentially reattribute user.
// add your code below to handle deep link
// (e.g., open deep link content)
// url object contains the deep link
Expand Down

0 comments on commit 5ab4fee

Please sign in to comment.