在平板电脑的Android市场上缺少应用程序

时间:2012-03-22 20:50:15

标签: android google-play

我知道这里有一些类似的问题,但我已经完成了所有的答案,但仍然没有运气。

我无法将自己的应用程序显示在我的平板电脑上(Delll Streak 7运行3.2)

这是我的清单:

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="nz.co.ma.visualmetronomepro"
    android:versionCode="13"
    android:versionName="1.30" >

    <uses-sdk android:minSdkVersion="10" />

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

    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

    <application
        android:name="nz.co.ma.visualmetronomepro.EngineData"
        android:icon="@drawable/icon"
        android:label="@string/app_name" >
        <activity
            android:name="nz.co.ma.visualmetronomepro.MainClass"
            android:label="@string/app_name" />
        <activity
            android:name="nz.co.ma.visualmetronomepro.SettingsScreen"
            android:configChanges="keyboard|keyboardHidden|orientation"
            android:label="@string/app_name" />
        <activity
            android:name="nz.co.ma.visualmetronomepro.HomeScreen"
            android:configChanges="keyboard|keyboardHidden|orientation"
            android:label="@string/app_name"
            android:screenOrientation="landscape" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.google.ads.AdActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenLayout" />

        <service android:name="nz.co.ma.test.util.MyService" />
    </application>

</manifest>

我一直在玩android:minSdkVersionsupports-screens,但我无法理解!

0 个答案:

没有答案