Android 支持的设备是0-Google play

Android 支持的设备是0-Google play,android,google-play,Android,Google Play,舱单: 不久之前,这一切都很顺利。现在它显示了支持0的设备! 请帮我做这个 在控制台上显示这些功能,尽管我没有使用它。 android.hardware.screen.Grait android.hardware.TOUCHSCREEN android.hardware.WIFI <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/a

舱单: 不久之前,这一切都很顺利。现在它显示了支持0的设备! 请帮我做这个

在控制台上显示这些功能,尽管我没有使用它。 android.hardware.screen.Grait android.hardware.TOUCHSCREEN android.hardware.WIFI

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.app.irb.wallpro"
    android:versionCode="5"
    android:versionName="1.0.5" >

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

    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <!-- Include next permission if you want to allow UIL to cache images on SD card -->
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.SET_WALLPAPER_HINTS" />
    <uses-permission android:name="android.permission.SET_WALLPAPER" />

       <application
        android:name="com.irbrothers.wallpro.ui.WallProApplication"
        android:allowBackup="true"
        android:icon="@drawable/app_icon"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.irbrothers.wallpro.ui.SplashActivity"
            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>
        <activity
            android:name="com.irbrothers.wallpro.ui.PropertiesActivity"
            android:configChanges="orientation"
            android:screenOrientation="portrait" >
        </activity>
        <activity
            android:name="com.irbrothers.wallpro.ui.HomeActivity"
            android:configChanges="orientation|screenSize"
            android:launchMode="singleTask" >
        </activity>
        <activity
            android:name="com.irbrothers.wallpro.ui.EULA"
            android:configChanges="orientation|screenSize"
            android:screenOrientation="portrait" >
        </activity>
        <activity
            android:name="com.irbrothers.wallpro.ui.AboutActivity"
            android:configChanges="orientation"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.Black.NoTitleBar"
            android:windowSoftInputMode="adjustPan" >
        </activity>
        <activity
            android:name="com.startapp.android.publish.list3d.List3DActivity"
            android:taskAffinity="com.app.irbrothers.wallpro.AppWall"
            android:theme="@android:style/Theme" />
        <activity
            android:name="com.startapp.android.publish.AppWallActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:taskAffinity="com.app.irbrothers.wallpro.AppWall"
            android:theme="@android:style/Theme.Translucent" />

        <service android:name="com.irbrothers.wallpro.alarm.NotificationService" />

        <receiver android:name="com.irbrothers.wallpro.recievers.NotificationAlarmReciever" >
            <intent-filter>
                <action android:name="com.irbrothers.notification" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.DATE_CHANGED" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.TIMEZONE_CHANGED" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.TIME_SET" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.TIME_TICK" />
            </intent-filter>
        </receiver>
    </application>

</manifest>
解决
不要使用框架中已经存在的任何库。示例:这里json很简单。

您是否上传发布的apk?确保不上载调试版本。是否使用Gradle编译?如果是,请添加应用程序的渐变设置。否。我正在使用eclipse进行编译。而且它不是启用调试的。