I followed instructions to setup NFC to launch my app on Android. The first record in the tag is a url to my website. ex. example.com
The AndroidManifest.xml file has the following intent filter:
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<data android:host="example.com" android:scheme="http" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
But for whatever reason when I scan the tags, the android browser opens, not my app. Android documentation for nfc doesn't appear to have any additional steps https://developer.android.com/guide/topics/connectivity/nfc/nfc.html
For what it's worth, I'm using Apache Cordova and the phonegap-nfc plugin.