Execution failed for task ':app:processDebugResources' even with latest build tools

前端 未结 10 1957
南笙
南笙 2020-12-03 05:14

I am getting this error when I try to run my project. I have installed the latest build tools- 23.0.3 but still the error persists. How do I fix this?

Execut         


        
10条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-03 05:36

    Issue SOLVED by making library and app build.gradle same ... compileSdkVersion and buildToolsVersion.

    library build.gradle and

    android {
    
        compileSdkVersion 25
        buildToolsVersion "25.0.0"
        .....
        .....
    }
    

    app build.gradle

    android {
    
        compileSdkVersion 25
        buildToolsVersion "25.0.0"
        .....
        .....
    }
    

提交回复
热议问题