I have an app which uses a camera for one of its functions and the camera is mandatory. But the app does not care whether the device has only a front camera or only back camera or both.
I am not able to see the app on devices that have only a front camera like Nexus 7 (2012) model. I made the following change in the Manifest file but I am still not able to see the app on this device via the play store.
<uses-feature android:name="android.hardware.camera" android:required="true"/>
<uses-feature android:name="android.hardware.back" android:required="false"/>
Could someone please help me with this issue?