build NFC reader in android application -


i cant find simple resource read nfc tag. have looked @ sample code, in sdk manager when run it, doesn't read tag. similar trying accomplish, here reading data nfc tag, don't know goes in manifest file???? please! have in manifest @ moment.

<uses-permission android:name="android.permission.nfc"/>   <activity         android:name="com.test.nfc.tagsactivity"         android:label="@string/app_name" >         <intent-filter>             <action android:name="android.intent.action.main" />             <action android:name="android.nfc.action.tag_discovered"/>             <action android:name="android.nfc.action.ndef_discovered"/>             <data android:mimetype="text/plain" />             <category android:name="android.intent.category.launcher" />         </intent-filter>     </activity>   

i found useful links below.

may you.


Comments