Android发布应用程序谷歌播放优化提示(检查targetSdkVersion和minSdkVersion)

时间:2013-12-02 04:45:40

标签: android sdk google-play apk publishing

我正在尝试在Google Play商店发布我的应用。我为手机以及Android Gingerbread(2.3.3)上的标签设计了它。但我遇到了一些优化提示。我知道这个问题也在前面讨论过,但我找不到解决办法。请帮帮我。感谢。

Screenshot of google play developer console

的Manifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.myapp"
android:installLocation="auto"
android:versionCode="1"
android:versionName="1.0" >

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

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="15" />

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

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.SEND_SMS" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.google.ads.AdActivity"
        android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" >
    </activity>
    <activity
        android:name="com.myapp.Splash"
        android:label="@string/app_name"
        android:screenOrientation="portrait" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

2 个答案:

答案 0 :(得分:1)

你在Android清单上犯了错误:

  1. 您的Android min版本设置为8,但Android 3.0(API级别11)中添加了对平板电脑的初始支持。所以它必须是11或更高。
  2. 在使用功能和使用权限下,您需要一些可能在某些平板电脑上无法使用的硬件功能,如前置摄像头或电话。对于所有此类功能,您应添加新参数android:required="false"
  3. 这是来自android开发者网站的更多详细信息。

    http://developer.android.com/distribute/googleplay/quality/tablet.html#android-versions http://developer.android.com/distribute/googleplay/quality/tablet.html#hardware-requirements

答案 1 :(得分:0)

当您上传应用时,开发者控制台现在会运行一系列检查以验证平板电脑应用质量检查表中的基本条件,并向您显示在“优化提示”页面中找到的任何问题。

有关如何设计和构建优秀平板电脑应用的想法,包括有关如何解决优化提示页面中列出的问题的详细信息,请查看Tablet App Quality Checklist。请记住,优秀的平板电脑体验远远超出了这些基本检查。继续努力为您的平板电脑用户提供最完美的用户界面和最丰富的内容