How to determine an android device whether supports "android.hardware.camera.autofocus"?
From where I can get a feature list supported by this android device?
I want to use feature in my app, but I don't know if the phone supports or not.
<uses-feature
android:name="android.hardware.camera"
>
</uses-feature>
<uses-feature
android:name="android.hardware.camera.autofocus"
android:required="true"
>
</uses-feature>