On Thu, Aug 25, 2011 at 6:58 AM, Dominik <[email protected]> wrote: > is there a difference between declaring > <uses-feature android:name="android.hardware.nfc" > android:required="false" /> > and not declaring any nfc specific uses-feature at all?
Possibly. With other hardware-related permissions (e.g., android.permission.CAMERA), asking for the permission implies <uses-feature android:name="..." android:required="true">. While android.permission.NFC is not listed in the table for this in the <uses-feature> documentation, it might be a documentation bug and has the same behavior as the others. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training in Oslo: http://bit.ly/fjBo24 -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

