how to fix eror app\build\intermediates\res\merged\debug\values-v24\values-v24.xml

前端 未结 4 1099
失恋的感觉
失恋的感觉 2021-01-17 09:14

I get an error when I build a project.

Error:

Error:Execution failed for task \':app:processDebugResources\'.
> com.android.ide.common.process.Pro         


        
4条回答
  •  不知归路
    2021-01-17 09:49

    I´ve resolved changing my build.gradle inside android/build.gradle :

    old: android: { compileSdkVersion 23 buildToolsVersion "23.0.1" ... }

    dependencies: { compile "com.android.support:appcompat-v7:23.0.1" ... }

    to android: { compileSdkVersion 24 buildToolsVersion "24.0.1" ... }

    dependencies: { compile "com.android.support:appcompat-v7:24.0.1" ... }

提交回复
热议问题