Skip to content Skip to sidebar Skip to footer

Error: No Resource Found That Matches The Given Name (at 'theme' With Value '@style/apptheme')

![give me error : ( ] i tryed every thing ... [2014-11-15 17:56:06 - LoginActivity] C:\Users\Different\workspace\LoginActivity\AndroidManifest.xml:15: error: Error: No resour

Solution 1:

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.

Post a Comment for "Error: No Resource Found That Matches The Given Name (at 'theme' With Value '@style/apptheme')"