简体   繁体   English

摩托罗拉Droid在市场上看不到我的安卓游戏

[英]My android game is not visible on market for Motorola Droid

I have published my game for various android devices using Multiple APK submission in Android market, but few of the devices like Motorola Droid are not visible in the market. 我已经在Android市场中使用“多个APK提交”功能为各种Android设备发布了我的游戏,但是在市场上看不到像Motorola Droid这样的设备。 Even though the same density file as well as higher density APK is also submitted. 即使提交了相同的密度文件以及更高密度的APK。 Can any one modify/provide the Android manifest. 任何人都可以修改/提供Android清单。

I have pasted my Android manifest file here 我在这里粘贴了我的Android清单文件

<supports-screens
              android:xlargeScreens="false" 
              android:largeScreens="false"
              android:normalScreens="true"
              android:smallScreens="false"
              android:anyDensity="true" />
  <compatible-screens>   
  <!-- all normal size screens -->        
  <screen android:screenSize="normal" android:screenDensity="hdpi" />  
  </compatible-screens>
android:largeScreens="false"

needs to be: 需要是:

android:largeScreens="true"

After uploading the new apk, you will have to wait until the Android Market picks up the change before it will start to show in the filtered Motorola Droid Market listing. 上传新的apk后,您必须等到Android Market收到更改后再开始显示在已过滤的Motorola Droid Market列表中。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM