2012-10-10 95 views
0

當我嘗試安裝我在Android 4.0.3操作系統的應用程序,我收到以下錯誤:應用在安卓4.0 ICS未安裝

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> 

但這個應用程序在操作系統版本成功啓動2.3.3模擬器和真實設備。

回答

1
+0

我已經瀏覽了所有網址,並且有第一個網址的解決方案•Android「沒有找到允許撤消的內容提供商」。解決方法是在AndroidManifest.xml文件中添加 但是解決了這個問題後,我的應用啓動器圖標顯示在屏幕上,但我不想 顯示應用在屏幕上的圖標。 – Parveen

+1

我會要求你多一點谷歌,我只花了5分鐘,發現這4個URLs給你。多做一點挖! –