Android Studio : INSTALL_PARSE_FAILED_MANIFEST_MALFORMED

后端 未结 3 403
隐瞒了意图╮
隐瞒了意图╮ 2021-01-05 23:11

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 sugg

3条回答
  •  天命终不由人
    2021-01-05 23:33

    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.

提交回复
热议问题