我按照說明設置了NFC以在Android上啓動我的應用。標籤中的第一條記錄是我網站的網址。恩。 example.com帶有URL打開瀏覽器的Android NFC標籤,而不是我的應用
AndroidManifest.xml文件有以下意圖過濾器:
<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>
但無論出於何種原因,當我掃描標籤,Android瀏覽器中打開,而不是我的應用程序。 nfc的Android文檔似乎沒有任何額外的步驟https://developer.android.com/guide/topics/connectivity/nfc/nfc.html
對於它的價值,我使用的是Apache Cordova和phonegap-nfc插件。