Android sdk版本不兼容

时间:2011-12-09 21:22:31

标签: android manifest

当我运行我的应用程序时,我在更改清单设置后关闭了一个力量我正在运行android 4.0并且我的清单看起来如下。它完全正常工作,直到我更改了使用sdk标签。我需要min sdk版本为4所以它适用于所有设备

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="unjustentertainment.fluidcount.com"
android:versionCode="6"
android:versionName="1.8" >

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

<application
    android:icon="@drawable/icon"
    android:label="@string/app_name" >
    <activity
        android:theme="@android:style/Theme.NoTitleBar"
        android:label="@string/app_name"
        android:name=".FluidCountActivity" >
        <intent-filter >
            <action android:name="android.intent.action.MAIN" />

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

           android:theme="@android:style/Theme.NoTitleBar"
        android:label="@string/app_name"
        android:name=".MainScreen" >
        <intent-filter >
            <action android:name="unjustentertainment.fluidcount.com.CLEARSCREEN" />

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

        android:theme="@android:style/Theme.NoTitleBar"
          android:label="@string/app_name"
                android:name=".Chart"/>

    <activity 

        android:theme="@android:style/Theme.NoTitleBar"
          android:label="@string/app_name"
                android:name=".Graphs"/>

    <activity

         android:name="com.google.ads.AdActivity"
          android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
          />

</application>

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

为什么我要关闭这支部队?

它在模拟器上完美运行只有当我把它推向市场并将其下载到我的HTC EVO 4g时才会出现

我得到的错误消息是

12-09 15:48:33.649:E / AndroidRuntime(4974):java.lang.RuntimeException:无法启动活动ComponentInfo {unjustentertainment.fluidcount.com/unjustentertainment.fluidcount.com.MainScreen}:android.view。 InflateException:二进制XML文件行#20:错误膨胀类空间

0 个答案:

没有答案