I had these two lines in my build.gradle file:
compileSdkVersion 20
buildToolsVersion '21.1.2'
I changed them to:
compileSdkVersion 23
buildToolsVersion '23.0.2'
And I also changed support library to match the build tools version:
compile 'com.android.support:support-v13:23.1.0'
Now, when building my project I get this error:
Error:(21, 33) No resource found that matches the given name (at 'paddingTop' with value '@dimen/abc_action_bar_default_height').
That relates to a line in a layout file:
android:paddingTop="@dimen/abc_action_bar_default_height"
How do I fix this?