I have developed an Application which deals with NFC.
Currently my Application can not be downloaded from play store if user's device doesn't support NFC.
I want it to be downloaded from all devices i.e. it should be compatible with all devices regardless of NFC support.
I have used this line in manifest :
<uses-feature android:name="android.hardware.nfc" android:required="false" />
Will this solve my issue??
I am new to NFC, so I'm not getting any idea what should I do to make it work in all devices. I need some guidance from someone who has already have worked on this technology.