NFC with my YubiKey Neo does not seem to work on Android Marshmallow.
[Following the instructions:](https://keepass2android.codeplex.com/wikipage?title=How%20to%20use%20Keepass2Android%20with%20YubiKey%20NEO&referringTitle=Documentation)
Chrome opens up the URL now.
In the YubiKey Personalization Manager you can not change to just text either, because it requires some character to be put in as a pad.
What can I provide to assist in troubleshooting?
Comments: I think this issue would be fixed by registering an additional intent in **NfcOtpActivity** so Keepass2Android handles *my.yubico.com* URLs, as it is done in the Yubiclip app (see [AndroidManifest.xml, lines 61-68](https://github.com/Yubico/yubiclip-android/blob/master/AndroidManifest.xml)): ``` <intent-filter android:autoVerify="true"> <action android:name="android.intent.action.VIEW"/> <category android:name="android.intent.category.BROWSABLE"/> <data android:scheme="https" android:host="my.yubico.com" android:pathPrefix="/neo"/> </intent-filter> ```
[Following the instructions:](https://keepass2android.codeplex.com/wikipage?title=How%20to%20use%20Keepass2Android%20with%20YubiKey%20NEO&referringTitle=Documentation)
Chrome opens up the URL now.
In the YubiKey Personalization Manager you can not change to just text either, because it requires some character to be put in as a pad.
What can I provide to assist in troubleshooting?
Comments: I think this issue would be fixed by registering an additional intent in **NfcOtpActivity** so Keepass2Android handles *my.yubico.com* URLs, as it is done in the Yubiclip app (see [AndroidManifest.xml, lines 61-68](https://github.com/Yubico/yubiclip-android/blob/master/AndroidManifest.xml)): ``` <intent-filter android:autoVerify="true"> <action android:name="android.intent.action.VIEW"/> <category android:name="android.intent.category.BROWSABLE"/> <data android:scheme="https" android:host="my.yubico.com" android:pathPrefix="/neo"/> </intent-filter> ```