I am new to Monodroid and was wondering if there is a way to use an IntentFilter attribute to declare this:
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain" />
</intent-filter>
I tried looking for it using Visual Studio's intellisense but nothing shows up. I already included Android.Nfc.
The reason for this is because I'm having trouble getting my app to run properly. It always says "Unfortunately, app_name has stopped". I don't know if it's an AndroidManifest.xml merging problem.