我无法在Play商店中启用第一代nexus 7

时间:2013-09-09 23:08:19

标签: android nexus-7

我遇到了第一代nexus 7出现在游戏商店的问题。我尝试了几种不同的配置。以下是我的清单的相关部分。

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />


<permission android:name="com.example.gcm.permission.C2D_MESSAGE"
            android:protectionLevel="signature" />
<uses-permission android:name="com.example.gcm.permission.C2D_MESSAGE" />

<uses-feature android:name="android.hardware.camera" />


<compatible-screens>
    <screen android:screenSize="small" android:screenDensity="hdpi" />
    <screen android:screenSize="small" android:screenDensity="xhdpi" />
    <screen android:screenSize="normal" android:screenDensity="hdpi" />
    <screen android:screenSize="normal" android:screenDensity="xhdpi" />
    <screen android:screenSize="normal" android:screenDensity="480" />
    <screen android:screenSize="large" android:screenDensity="213" />
    <screen android:screenSize="large" android:screenDensity="hdpi" />
    <screen android:screenSize="large" android:screenDensity="xhdpi" />
    <screen android:screenSize="large" android:screenDensity="mdpi" />
    <screen android:screenSize="large" android:screenDensity="480" />
</compatible-screens>

1 个答案:

答案 0 :(得分:0)

Nexus 7 2012的屏幕密度为tvdpi,这意味着您将不得不支持tvdpi。

  

Nexus 7有一个有趣的屏幕:

     
      
  • 7英寸。
  •   
  • 800x1280。
  •   
  • “tvdpi”密度(数字为213)。
  •   
  • 600 x 961,以dp为单位。
  •   

尝试:

<screen android:screenSize="large or normal, not 100% sure" android:screenDensity="tvdpi" />

https://plus.google.com/105051985738280261832/posts/6eWwQvFGLV8

修改 发现这个类似的问题。 Why my App is not showing up on tablets in Google Play?