Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was modyfing my android app, and I was trying it on real device (Run Application in eclipse) and all was working good. So When I was satisfied of my changes, I opened the Manifest in order to modify the version for releasing it, but WITHOUT ANY CHANGES in Manifest an error occurred at line:

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

the error is:

Permission is only granted to system apps

How is this possible? I builded my application many times using this line.

share|improve this question

2 Answers

up vote 11 down vote accepted

Thanks to all. I solved the strange problem with

 Project > Clean

Now all works good again!

share|improve this answer
1  
Don't upvote this answer - it has nothing to do with the actual problem, which is that this permission is NOT AVAILABLE to third party applications. Nothing a developer can do on a secured device will change that fact. – Chris Stratton May 13 at 20:16

you may not install packages yourself, don't even ask about that.

use Intent for that purpose:

Intent installIntent = new Intent(Intent.ACTION_VIEW );
installIntent.setDataAndType(
    Uri.parse("file://" + context.getFilesDir().getAbsolutePath() + "/" + file_name_to_install),
    "application/vnd.android.package-archive");
startActivity(installIntent);

if you were using Eclipse, most probably it has used old/outdated version of your Manifest, and when you open it, the changes were reloaded and brought up the error message. just remove offending permission and use Intents.

share|improve this answer
1  
I need to install new apk from my app. I use this method for several months and I have not encountered any problems. But today manifest show my this error, without any change! – Joseph82 Nov 23 '12 at 14:56
The android.permission.INSTALL_PACKAGES indicates that your app is able to install other apps but since this permission can only be given to system apps, your app does not apply. Here is some more info: stackoverflow.com/questions/3476600/… – Alex Fu Nov 23 '12 at 14:58
2  
@Joseph82 you might have used earlier versions of SDK, but the current one considers INSTALL_PACKAGE permission as dangerous and added to the "System or Signed" class. That means user applications cannot use this permission, unless the application is installed in /system/app or signed with the manufacturer certificate – lenik Nov 23 '12 at 15:06
This permission was never available - if it was present in the Manifest of earlier versions it was simply being ignored. The key fact is that it never worked for 3rd party apps, and is not needed to start the install process with an Intent. – Chris Stratton May 13 at 20:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.