Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7642809
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T09:17:02+00:00 2026-05-31T09:17:02+00:00

When I run my application in the emulator, it runs fine. When I send

  • 0

When I run my application in the emulator, it runs fine. When I send it (email) to my phone, the following message occurs:

Sorry! The application Package Installer (process.com.android.packageinstaller) has stopped unexpectedly. Please try again.

I have tried the solutions to similar questions on SO and have looked through Google to find a solution that will work, so far to no avail.

Here is my manifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="application.android"
  android:versionCode="1"
  android:versionName="1.0"
  android:installLocation="auto">
<uses-sdk android:minSdkVersion="8" />
<uses-permission  android:name="android.permission.INTERNET"/>
<application android:icon="@drawable/icon" 
    android:label="@string/app_name"
    android:permission="android.permission.INTERNET">        
    <activity android:name=".MainActivity"
              android:label="@string/app_name"
              android:screenOrientation="portrait"
              android:theme="@android:style/Theme.NoTitleBar">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".HistoryActivity"
        android:label="@string/app_name"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar"></activity>
    <activity android:name=".DiagnosisActivity"
        android:label="@string/app_name"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar"></activity>      
    <activity android:name=".eula"
        android:label="@string/app_name"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar"></activity>      
    <activity android:name=".disclaimer"
        android:label="@string/app_name"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar"></activity>    
    <activity android:name=".DetailsActivity"
        android:label ="@string/app_name"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar"></activity>        
    <activity android:name=".ResultsActivity"
        android:label ="@string/app_name"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar"></activity>        
    <activity android:name=".DiagnosisNoteActivity"
        android:label ="@string/app_name"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar"></activity>        
    <activity android:name=".NewDiagnosisActivity"
        android:label ="@string/app_name" 
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar"></activity>      
    <activity android:name=".DiagnosisTabActivityGroup"
        android:label ="@string/app_name" 
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar"></activity>        
    <activity android:name=".TabGroupActivity"
        android:label ="@string/app_name" 
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar"></activity>        
    <activity android:name=".SplashActivity"
        android:label ="@string/app_name" 
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar"></activity>       
    <activity android:name=".NewScreenActivity"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar"></activity>
</application>

When debugging on my phone through Eclipse the following shows in console:

[2012-03-12 23:38:52 - ruleout] Android Launch!
[2012-03-12 23:38:52 - ruleout] adb is running normally.
[2012-03-12 23:38:52 - ruleout] Performing ruleout.android.MainActivity activity launch
[2012-03-12 23:38:54 - ruleout] Uploading ruleout.apk onto device 'A0000028F2ABCF'
[2012-03-12 23:39:11 - ruleout] Installing ruleout.apk...
[2012-03-12 23:40:16 - ruleout] Success!
[2012-03-12 23:40:16 - ruleout] Starting activity ruleout.android.MainActivity on device A0000028F2ABCF
[2012-03-12 23:40:17 - ruleout] ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=ruleout.android/.MainActivity }
[2012-03-12 23:40:17 - ruleout] ActivityManager: java.lang.SecurityException: Permission Denial: starting Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 cmp=ruleout.android/.MainActivity } from null (pid=16174, uid=2000) requires android.permission.INTERNET

There is nothing shown in the LogCat window and as far as I can tell, I have enabled internet permissions. Also, I did add the android:debuggable=”true” attribute to the application tag.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T09:17:03+00:00Added an answer on May 31, 2026 at 9:17 am

    I managed to solve the problem so for anyone who comes across the same issue, if you remove the android:permission attribute from the application tag in the manifest, then it works like a charm.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to use my phone as emulator/target/virtual device when I run my application.
I try to run jsf application in myeclipse using jboss web server and following
When trying to run my application on the emulator I get an error from
When I'm going to run my application a new emulator starts, despite that I
I have run my rhodes application in Android emulator. When i type characters in
I have a fairly simple CRUD web application (C#/ASP.NET) that runs fine in Firefox,
When I try and run my application through the emulator it breaks and I
I'm having an issue with a windows ce application. It runs fine through the
I needed to test a mobile application that runs on Windows CE .NET Emulator.
Everytime I try to run my application on an emulator, after the splash screen

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.