My problem was in the old format for apple-app-site-association .
The format is old :
{ "applinks": { "apps": [], "details": { "1234ABCDE.com.app.myapp": { "paths": [ "*" ] } } } }
Update the format of the fixed problem, and the format is new :
{ "applinks": { "apps": [], "details": [ { "appID": "1234ABCDE.com.app.myapp", "paths": ["*"] } ] } }
You can check if the format is suitable: https://search.developer.apple.com/appsearch-validation-tool/ If he says: recommended - the old format, so it will not work on iOS9.2 , therefore it is updated to the new format.
Hope this helps someone.
source share