Universal Links Not working...

I'm trying to set up universal links for the first time. I have my file sitting at https://b-out.lgbt/.well-known/apple-app-site-association


{ "applinks": { "apps": [], "details": [ { "appID": "**hidden***.lgbt.bout.boutapp", "paths": [ "/discussions/"] } ] } }


In my capabilities tab I have: applinks:b-out.lgbt


I have the code in my app delegate:


-(BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void(^)(NSArray * __nullable restorableObjects))restorationHandler{
    //
    NSLog(@"user activity %@", userActivity);
  
    //
    return YES;
}


When I try to use this universal link it doesn't direct to the app like it is supposed to:

http://b-out.lgbt/discussions/


Any ideas?

I ran into the same problems. Did not manage to resolve it. In my case I don't see any com.apple.developer.associated-domains in my embedded.mobileprovision when I deploy or export the app. Maybe there is a bug in the apple codesign tool.

I managed to solve it. After having implemented

- (BOOL)application:(UIApplication *)application willContinueUserActivityWithType:(NSString *)userActivityType

it worked for me now.

Universal Links Not working...
 
 
Q