我正在编写一个适用于 NFC 和 MIFARE CARD 的应用程序。
当我的 NFC 设备检测到卡时,它会显示可以使用 NFC 的应用程序列表,但没有提及我的应用程序。
我的 android 清单文件中缺少什么?
<uses-permission android:name="android.permission.NFC" />
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="17" />
<uses-feature
android:name="android.hardware.nfc"
android:required="true" />
<application
android:icon="@drawable/ic_launcher" android:allowBackup="true"
android:label="@string/app_name" android:theme="@style/AppTheme" >
<activity android:uiOptions="splitActionBarWhenNarrow"
android:name="it.namespace.app.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<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>
<meta-data
android:name="android.nfc.action.TECH_DISCOVERED"
android:resource="@xml/tech_filter" />
</activity>
</application>
这是我的 tech_filter 文件 xml:
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2" >
<tech-list>
<tech>
android.nfc.tech.MifareClassic
</tech>
</tech-list>
</resources>
这里显示我的应用程序不在列表中的图像: