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?