ManuelPeinado / FadingActionBar

Android library implementing a fading effect for the action bar, similar to the one found in the Play Music app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cant find Material styles

finneapps opened this issue · comments

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'.

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.