Nexus 7 compatibility issue

后端 未结 3 1571
萌比男神i
萌比男神i 2020-12-12 03:50

I have created an Application compatible only for Android Tabs. The Manifest.xml declaration for the App is :

  

        
3条回答
  •  庸人自扰
    2020-12-12 04:25

    I think perhaps the problem is that the App requesting permission to things that don't exist on Nexus 7 Tab.
    This permission in your manifest implicitly declares the "android.hardware.telephony" feature. Nexus 7 Tab support this?
    Refer to the document: http://developer.android.com/guide/topics/manifest/uses-feature-element.html#market-feature-filtering

    
    

    Try this, keep the permission, but declare the "telephony" feature as false.

    
    

    If it's not work, maybe you should change the "normalScreens" setting or "requiresSmallestWidthDp" setting and try again.

    With the Open GL feature below,

    
    

    This setting will exclude the devices not support OpenGL ES 2.0, but the GPU in Nexus 7 is ULP GeForce, which OpenGL ES Version is 2.0 .

提交回复
热议问题