应用程序未安装在Android 4.0 ICS中

时间:2012-10-10 04:27:58

标签: android android-4.0-ice-cream-sandwich

当我尝试在Android 4.0.3操作系统上安装我的应用程序时,出现以下错误:

09-19 12:31:56.331: W/ActivityManager(107): No content provider found for permission revoke: file:///data/local/tmp/Sample.apk
09-19 12:31:56.340: W/ActivityManager(107): No content provider found for permission revoke: file:///data/local/tmp/Sample.apk
09-19 12:31:56.780: I/PackageManager(107): Running dexopt on: com.src.sample
09-19 12:31:57.060: I/ActivityManager(107): Force stopping package com.src.sample uid=10040

我也在真实设备上试过这个,但applciation不会启动。

我的应用程序没有启动器图标。

AndroidManifest.xml代码:

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
    android:name=".SettingsScreen"
    android:label="@string/setting_screen"
    android:excludeFromRecents="true"
  >
   <intent-filter>
        <action android:name="android.intent.action.MAIN" />
    </intent-filter>
 </activity>

但是这个应用程序在OS 2.3.3仿真器和真实设备上成功启动。

1 个答案:

答案 0 :(得分:1)