Error compiling the android studio project (BUTTON INVERSE)

1

I need help to solve a problem of theme 23, mark me in the inverse button and try to erase it but it reappears when I try to rebuild or compile it

    
asked by Jonathan Vazquez 12.08.2016 в 23:01
source

1 answer

1

Change the reference to compile ( build.gradle ) with version 23 in your compileSdkVersion (Remember that you must use the major version):

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"
...
...
...

}

This is necessary because you are using the support library !

    
answered by 12.08.2016 / 23:09
source