cant find Material styles
finneapps opened this issue · 1 comments
finneapps commented
How can I avoid that the values-21 is created? Or how can i fix it? I guess I have to do some gradle magic.
errors:
Error:Error retrieving parent for item: No resource found that matches the given name '@android:TextAppearance.Material.SearchResult.Subtitle'.
MariusVolkhart commented
Yes, you'll need to modify build.gradle
to look something like:
android {
compileSdkVersion 20
buildToolsVersion '20.0.0'
defaultConfig {
minSdkVersion 15
targetSdkVersion 20
// Other config properties
}
// Other android properties
}
Afterwards, delete the values-21 folder.