支持的设备是0-Google play

时间:2015-02-08 11:28:54

标签: android google-play

清单: 这在一段时间之前工作正常。现在它显示0支持的设备! 请帮帮我。

虽然我没有使用它,但在控制台上显示这些功能。     android.hardware.screen.PORTRAIT     android.hardware.TOUCHSCREEN     android.hardware.WIFI

enter image description here

<?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-simple”在这里。

0 个答案:

没有答案
相关问题