0

When I try to install my application on Android 4.0.3 OS, I get following errors:

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

I have also tried this on a real device but applciation will not start.

My Application does not have a launcher icon.

AndroidManifest.xml code:

<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>

But this application successfully started on OS version 2.3.3 emulator and real device.

TZHX
  • 5,291
  • 15
  • 47
  • 56
Parveen
  • 241
  • 6
  • 17

1 Answers1

1

Many people have faced similar issues, some pointers below

Kindly browse through them and figure out a solution.

Community
  • 1
  • 1
Royston Pinto
  • 6,681
  • 2
  • 28
  • 46
  • I have go through all URL's and there is a solution from first URL •Android "No content provider found for permission revoke". Solution is add in AndroidManifest.xml file But after this solution my app launcher icon shows in the screen, but I don't want to show app icon in screen. – Parveen Oct 10 '12 at 07:45
  • 1
    I would request you to google a bit more, i just spent 5 mins and found these 4 URLS's for you. Just do a little more digging.! – Royston Pinto Oct 10 '12 at 09:33