简体   繁体   中英

Detect other apps with access to NFC module in android

Is there a way to detect programmatically other applications that are installed in an android device and have access to device's NFC module?

You can list all installed packages (PackageInfo) on the device, and from there you can look up for

<uses-permission android:name="android.permission.NFC" />

by using PackageInfo.requestedPermissionsFlags

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM