从谷歌播放安装应用程序时不支持设备。

时间:2014-04-11 07:32:52

标签: android eclipse google-play android-manifest

我已在Google Play上打开我的应用进行beta测试。我使用eclipse在手机(Samsung Galaxy Y S5360)上测试了该应用,然后再将其上传到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 =&#34; 9&#34; 与我的手机Android版本相匹配。我是在Google Play上传Android应用程序的新手,请帮帮我。非常感谢你。

0 个答案:

没有答案