Android Manifest for Galaxy Tablet 2

主宰稳场 提交于 2019-12-25 02:46:09

问题


I have those permissions in my manifest and the app doesn't show up when i launch the play store on galaxy tablet. From what I read so far, it points that filtering is done based on the device profile and hardware capabilities. The device i am testing is Samsung Galaxy Tab2

<uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.CAMERA" />
    <uses-permission android:name="android.permission.RECORD_AUDIO" />
    <uses-permission android:name="android.permission.RECORD_VIDEO" />
    <uses-permission android:name="android.permission.STORAGE" />
    <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
    <uses-permission android:name="android.permission.CAPTURE_AUDIO_OUTPUT" />
    <uses-permission android:name="android.permission.CAPTURE_VIDEO_OUTPUT" />

    <supports-screens
        android:anyDensity="true"
        android:largeScreens="true"
        android:normalScreens="true"
        android:resizeable="true"
        android:smallScreens="true" />

Any ideas?

Thanks,


回答1:


android.permission.CAMERA implies both android.hardware.camera and android.hardware.camera.autofocus

Galaxy Tab 2 GT-P5113 doesn't have auto focus. So, that would make it filtered out. Hope it helps someone because It took me a while to find the answer.



来源:https://stackoverflow.com/questions/21805613/android-manifest-for-galaxy-tablet-2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!