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

I am developing a small application that lists all the applications present/ installed on the android device. But I'm getting the below error while i'm trying to run the code.

Installation error: INSTALL_PARSE_FAILED_MANIFEST_MALFORMED

Please can any one help me to sort out this error.

share|improve this question

6 Answers

Activity name should be prefixed with "." in your manifest file.

share|improve this answer
And the reason? – Pacerier Feb 10 '12 at 13:10
in Manifest you declared package attribute with package, so when you create activity you put "." to be preceded by package name, you can also type the full name of the activity like : "com.example.test.Activity_Name", or ".Activity_Name" – Amt87 Sep 18 '12 at 7:40
Perfect answer !!! – SAHIL Mar 6 at 6:04

Check your Activity name in manifest file or the Package name in mani

share|improve this answer

My issue was that I had written (Notice the - vs. the _):

<meta_data ... /> 
<!-- instead of -->
<meta-data ... />

under an activity. This might be the cause of your issue as well.

share|improve this answer

Any name such as android:name, android:process should be in form of package name: starts with a..z, combines with others with ., do not end with ....

share|improve this answer
How is that relevant to the user's question? – Igor Ganapolsky May 6 '12 at 0:27
@IgorG. Sorry I lost my point :-( But the new SDK removed that field (here). – user942821 May 6 '12 at 2:08
Thank you. I called a process such a way: android:process="com.my_pack.services.MyServiceProcess" (com.my_pack.services is the package where my service is) and the installation error will not show up after that. – Red Planet Feb 1 at 6:21

Got the same error! had empty permission tag and that was causing the problem!

share|improve this answer
Please add some more detail to your answer – kolossus Jan 26 at 18:52
this guy is right... – Roadies Feb 8 at 12:30

There could be another reason for this error. The attribute

android:taskAffinity="string" 

Should always start with a dot, like:

android:taskAffinity=".string" 
share|improve this answer

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.