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 trialkatrina turqotte
175 Pointsno resource match for Theme.AppCompat.Light.NoActionBar
app compat error
1 Answer
Lauren Moineau
9,483 PointsHi Katrina. Check your build.gradle (Module:app)
file and make sure you have AppCompat added to your dependencies
. It should look like this:
dependencies {
// other dependencies you may have
implementation 'com.android.support:appcompat-v7:28.0.0'
}
The version number will depend on the compileSdkVersion
you have at the top of the file (here, it would be 28).
Hope that helps :)