I'm having a bear of a time getting universal links in iOS 9 to work. Here's what I've done:
- Uploaded an apple-app-site-association file to my website (https://nmrs.co). It's in the new format as prescribed by the App Search Programming Guide. In particular, the file isn't signed.
- Checked that the site validates with Apple validator tool. Under the Universal Links section it says "Passed".
- Added an entry to my app's entitlements file:
<key>com.apple.developer.associated-domains</key>
<array>
<string>applinks:nmrs.co</string>
</array>
- Updated provisioning profiles in Xcode.
- Unisntalled/reinstalled app on an iOS 9.0.1 device.
- Tap a link such as https://nmrs.co/m/mquyskqnd52o .
Doing so always opens Safari, not my app. What am I missing?