Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
monu singh
Courses Plus Student 240 Pointsemulator error
when i run my app in emulator .. i get this error .. Failure [INSTALL_PARSE_FAILED_MANIFEST_MALFORMED] how it can be fixed?
1 Answer
James Simshaw
28,738 PointsHello,
Your package name likey has a capital letter in it. Try refactoring your package so that all the letters are lowercase. To do this, in the panel for your project, make sure you're in Android view mode, then click the gear that is a little to the right of the view indicator, then make sure compact empty middle packages is unchecked. Next, right click on your package with a capital letter in it and select refactor -> rename. Change it to have a lower case, double check your AndroidManifest.xml and build.gradle files now have your package as a lower case, if not, manually edit it.
monu singh
Courses Plus Student 240 Pointsi change it but still not working
James Simshaw
28,738 PointsCould you post your AndroidManifest.xml and build.gradle files? This would help in narrowing down the issue.
monu singh
Courses Plus Student 240 Points<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".FunFactsActivity" android:background="#ff49a7ff">
<TextView
android:text="Did You Know??"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView"
android:textSize="20sp"
android:textColor="#80ffffff" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="mY NAme is MONU"
android:id="@+id/textView"
android:layout_centerVertical="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:textSize="20sp"
android:textColor="@android:color/white" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="chakde fatte"
android:id="@+id/button"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:background="@android:color/white" />
</RelativeLayout>
monu singh
Courses Plus Student 240 Pointsmonu singh
Courses Plus Student 240 Pointsits done .. now app is running .. thanks mr james shaw for ur help...