Application launched by Action Main (from AAR) instead of NDEF Discovered
问题 I'm trying to launch my application by scanning a tag, but the intent I get is the action Main and not the NDEF Discovered as I would like. Here is my code I use to write the NdefMessage : NdefRecord aar = NdefRecord.createApplicationRecord("com.example.mynfc"); NdefRecord record = createUriRecord("www.stackoverflow.com"); NdefMessage message = new NdefMessage(new NdefRecord[]{record, aar}); with the createUriRecord : private NdefRecord createUriRecord(String text){ String uniqueId = text