[Android] Don't require camera, autofocus

Don't require autofocus because that prevents the app from appearing in
Google Play Store for some devices.

Don't require camera for the same reason but also because camera/video
is not a mandatory feature of the app, it's merely likely very
desirable.
This commit is contained in:
Lyubo Marinov 2017-09-14 12:16:46 -05:00
parent bf915fe886
commit 2496b3ec02
1 changed files with 2 additions and 2 deletions

View File

@ -14,10 +14,10 @@
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
<uses-feature
android:name="android.hardware.camera"
android:required="true" />
android:required="false" />
<uses-feature
android:name="android.hardware.camera.autofocus"
android:required="true" />
android:required="false" />
<application
android:allowBackup="true"