So I'm having trouble accessing the appcompat icons in the library and I dunno why.
// build.gradle
`compile 'com.android.support:appcompat-v7:23.2.0'`
I'm trying to use this icon: @drawable/abc_ic_clear_mtrl_alpha
// styles.xml
<style name="MyTheme" parent="Theme.AppCompat.Light">
<item name="homeAsUpIndicator">@drawable/abc_ic_clear_mtrl_alpha</item>
</style>
But I get this error: Error:(12, 5) No resource found that matches the given name (at 'homeAsUpIndicator' with value '@drawable/abc_ic_clear_mtrl_alpha').
Any help is appreciated thanks.