Android: getting Resources$NotFoundException for abc_ic_ab_back_material
I'm getting a Resources$notfoundexception on older (pre-L) devices. I'm including the full stacktrace below. My version of the support library is the latest (24.1.0), and I've included in my gradle file the line: vectorDrawables.useSupportLibrary = true My base theme is a noactionbar theme - "Theme.AppCompat.Light.NoActionBar" The crash is happening on this line in my code where I reference the back arrow in a support-toolbar in order to later change it's color: @SuppressLint("PrivateResource") final Drawable upArrow = ContextCompat.getDrawable(this, R.drawable.abc_ic_ab_back_material); What