Hi there!
as the title of my topic,
I'd like to write some simple data (i.e. an ID and/or a Name-Text) on
some NFC tags. Currently I'm able to write text and read it, but I
want my app is the only one can read it.
I guess I have to create a kind of custom mimetype, in order to handle
it with the intent-filter when the device read the NFC Tag, right?

something like:

<intent-filter>
    <action android:name="android.nfc.action.NDEF_DISCOVERED" />
    <data android:mimeType="myMime/myType" />
    <category android:name="android.intent.category.DEFAULT"/>
</intent-filter>

but how to achieve it? and how to write my data with this custom
mimetype on my tag?

Thanks in advance!

Paolo

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to