Skip to content

Instantly share code, notes, and snippets.

@masarugen
Created July 19, 2012 06:08
Show Gist options
  • Save masarugen/3141089 to your computer and use it in GitHub Desktop.
Save masarugen/3141089 to your computer and use it in GitHub Desktop.
<!-- NFC NDEF text -->
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain" />
</intent-filter>
<!-- NFC NDEF http -->
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:scheme="http" />
</intent-filter>
<!-- NFC TECH -->
<intent-filter>
<action android:name="android.nfc.action.TECH_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
<meta-data android:name="android.nfc.action.TECH_DISCOVERED" android:resource="@xml/nfc_tech_filter"/>
<!-- NFC TAG -->
<intent-filter>
<action android:name="android.nfc.action.TAG_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment