Android 从Google Play安装应用程序时不支持设备。

Android 从Google Play安装应用程序时不支持设备。,android,eclipse,google-play,android-manifest,Android,Eclipse,Google Play,Android Manifest,我已经在Google Play上打开了我的应用程序进行测试。我在手机三星Galaxy Y S5360上使用eclipse测试了该应用程序,然后将其上传到Google Play。它在eclipse上运行得很顺利,但当我在Google Play中以测试版的形式打开它并试图将其下载到我的手机上时。上面写着“您的设备与此版本不兼容” 这是我的舱单: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http:

我已经在Google Play上打开了我的应用程序进行测试。我在手机三星Galaxy Y S5360上使用eclipse测试了该应用程序,然后将其上传到Google Play。它在eclipse上运行得很顺利,但当我在Google Play中以测试版的形式打开它并试图将其下载到我的手机上时。上面写着“您的设备与此版本不兼容”

这是我的舱单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.myproject.newapp"
    android:versionCode="10"
    android:versionName="2.0" >

    <uses-sdk
        android:minSdkVersion="9"
        android:targetSdkVersion="19" />

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

    <application
        android:allowBackup="true"
        android:hardwareAccelerated="true"
        android:icon="@drawable/mc_logo"
        android:label="@string/app_name"
        android:theme="@style/Theme.Sherlock" >
        <service android:name="com.myproject.newapp.QueueService" />

        <activity
            android:name="com.myproject.newapp.LoginActivity"
            android:icon="@drawable/mc1_logo"
            android:label="@string/app_name"
            android:screenOrientation="portrait" >
        </activity>


        <activity
            android:name="com.myproject.newapp.SplashScreenActivity"
            android:label="@string/title_activity_splashscreen"
            android:screenOrientation="portrait" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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


    </application>

</manifest>

如您所见,我声明了minSdkVersion=9,它与我的手机android版本相匹配。我是谷歌Play上传android应用的新手,请帮我。非常感谢。

您的设备三星Galaxy Y S5360中的android版本请转到本页,然后交叉检查android API 9。GingerBread 2.3是版本,先生。您能从设备上删除应用程序并进行测试吗again@icaneatclouds欢迎你!