无法从非NDEF标记读取数据(有效负载)

时间:2015-04-27 09:24:56

标签: android cordova phonegap-plugins nfc

我正在使用Phonegap-nfc plugin

我正在尝试从非NDEF NFC卡读取数据(有效负载)。 触发的唯一操作是 ACTION_TAG_DISCOVERED ,我只能读取tag_info。

标签的技术是 NfcB IsoDep

nfc_tech_filter.xml

<tech-list>
    <tech>android.nfc.tech.NfcB</tech>
    <tech>android.nfc.tech.IsoDep</tech>
</tech-list>

NfcReader / AndroidManifest.xml中

<intent-filter>
            <action android:name="android.nfc.action.NDEF_DISCOVERED" />
            <action android:name="android.nfc.action.TECH_DISCOVERED" />
            <action android:name="android.nfc.action.TAG_DISCOVERED" />
            <category android:name="android.intent.category.DEFAULT" />
</intent-filter>

任何人都可以帮助我获取数据吗?

1 个答案:

答案 0 :(得分:0)

此插件仅支持NDEF。 Android支持NfcB和IsoDep,因此可以扩展此插件以满足我的需求。

感谢Don ...