3. Application manifest file
Android permissions
Android permission
Requirement
Description
Declare NFC features
Option A: Filter unsupported devices in Google Play
<uses-feature android:name="android.hardware.nfc" android:required="true" />
<uses-feature android:name="android.hardware.nfc.hce" android:required="true" />Option B: Allow install and check at runtime
Enable CPS communication service
Disable backup and restore
Example AndroidManifest.xml
AndroidManifest.xmlLast updated
Was this helpful?