Skip to content Skip to sidebar Skip to footer

Android Studio : Install_parse_failed_manifest_malformed

I've looked at other postings about the INSTALL_PARSE_FAILED_MANIFEST_MALFORMED but still can't figure out what's wrong with my particular manifest. Any suggestions?

Solution 1:

It's all because you added company domain (Android studio) in capital letters. Or the Package name. Change it to small letters and run the project. The problem will get resolved.

Solution 2:

Change your

android:name="ThePackage.SnapVest.MainActivity"

TO

android:name=".MainActivity"

OR make all the characters in the package name lowercase except your class name

android:name="thepackage.snapvest.MainActivity"

Do change all the attributes named as android:name inside the activity tags as I suggested.

Solution 3:

In my case the package name had a capital letter. After changing to all small letters the app got installed successfully

Post a Comment for "Android Studio : Install_parse_failed_manifest_malformed"