Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installation error: INSTALL_PARSE_FAILED_MANIFEST_MALFORMED?

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.

like image 502
S.P Avatar asked May 19 '11 09:05

S.P


2 Answers

There could be another reason for this error. The attribute

android:taskAffinity="string"  

Should always start with a dot, like:

android:taskAffinity=".string"  
like image 87
Andy Avatar answered Sep 19 '22 10:09

Andy


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

like image 29
suresha Chilukuri Avatar answered Sep 20 '22 10:09

suresha Chilukuri