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

Android

Android Manifest Editor

I recently updated to Android Studio 3.1 and I can't find the Manifest Editor.

Did they remove this?

2 Answers

Ben Jakuben
STAFF
Ben Jakuben
Treehouse Teacher

I noticed recently that this was missing, though I honestly can't remember if it was there before! I actually always edit the XML except when making my videos. Let us know if you have any specific questions about editing the file. I don't know if this feature is planned for a future release or not.

Ben, How do you use XML to change the application theme to one of the pre-configured themes? I am trying to recreate the crystal ball tutorial using Android Studio 0.5.3. I cannot figure out how to assign the theme without the Manifest Editor. Thanks!

Ben Jakuben
Ben Jakuben
Treehouse Teacher

Look for the <application> element, and then you can set the android:theme attribute there:

Example:

<application
    android:name="com.teamtreehouse.ribbit.RibbitApplication"
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.Holo.Light" >

Notice how "@android:style/" is required to use Android themes.

Thanks Ben. I figured it out with by editing the XML, so I'm all set.

Thanks again!