문제

Well, my purpose is to detect if the Android device supports NFC and if not I will use some other technology. I have set my minimum API level to 8 as I want my app to function even on these devices without NFC.

Is there a method like isNFCSupported()? any ideas?

thanks yosoh.

도움이 되었습니까?

해결책

Step #1: Put this in your manifest:

<uses-feature android:name="android.hardware.nfc" android:required="false" />

Step #2: Call hasSystemFeature(PackageManager.FEATURE_NFC) on PackageManager to see if NFC is available on the current device

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top