Error: No resource found that matches the given name (at 'theme' with value '@style/AppTheme') Error: No resource found that matches the given name (at 'theme' with value '@style/AppTheme') xml xml

Error: No resource found that matches the given name (at 'theme' with value '@style/AppTheme')


There it is.

Either change:

style name="AppBaseTheme" 

to

style name="AppTheme" 

in your styles.xml file. Or change:

android:theme="@style/AppTheme"

to

android:theme="@style/AppBaseTheme"

in your manifest application tag.

Both should be the same. Basically, your app is trying to use AppBaseTheme which doesn't exist.