I'm trying to figure out is there a way to let my app runs on devices with front camera only. Well, I think I should make it through <uses-feature>
in AnrdoidManifest.xml
.
I made it like that:
<uses-permission android:name="android.permission.CAMERA"/>
<uses-feature android:name="android.hardware.camera.front" android:required="true"/>
<uses-feature android:name="android.hardware.camera" android:required="false"/>
but it doesn't help. I mean I can run it on my device without front-facing camera. But maybe this features don't let users to download an app if their device doesn't have such feature?
If I'm wrong, please tell me the right way to solve my problem.
Regards, Dmitriy.