我有一个应用程序,它使用相机来实现其功能之一,并且相机是强制性的。但是该应用程序并不关心设备是否只有前置摄像头或只有后置摄像头或两者兼而有之。
我无法在只有前置摄像头(如 Nexus 7 (2012) 型号)的设备上看到该应用程序。我在 Manifest 文件中进行了以下更改,但我仍然无法通过 Play 商店在此设备上看到该应用程序。
<uses-feature android:name="android.hardware.camera" android:required="true"/>
<uses-feature android:name="android.hardware.back" android:required="false"/>
有人可以帮我解决这个问题吗?