我有一个我在Unity3D平台上开发的简单游戏。游戏只使用一个插件才能访问手机温度,陀螺仪,加速度计等。
该应用程序在各种设备上运行,我手动安装了应用程序。此外,我能够通过Unity进行构建并生成APK。问题是,当我将新APK上传到Google Play商店时,我收到一条消息,告诉我我的应用仅支持大约200台Android设备。没有这个插件,我就可以获得/支持大约10,000个设备。
我试图更改插件附带的AndroidManifest,但没有运气。我只想使用4个权限和8个非常常见的功能:
android.hardware.CAMERA
android.hardware.LOCATION
android.hardware.location.GPS
android.hardware.screen.PORTRAIT
android.hardware.sensor.ACCELEROMETER
android.hardware.sensor.AMBIENT_TEMPERATURE
android.hardware.sensor.COMPASS
android.hardware.sensor.GYROSCOPE
android.permission.ACCESS_FINE_LOCATION
android.permission.ACCESS_NETWORK_STATE
android.permission.CAMERA
android.permission.INTERNET
请帮我解决这个问题。