Getting Build failed with an Exception Android Studio 0.4.3 and 0.4.4

后端 未结 1 884
春和景丽
春和景丽 2020-12-18 13:46

This is my problem:

since I have updated Android Studio to .4.3 everytime I try to make a new project I get some Build failure, the thing happens with each and every

相关标签:
1条回答
  • 2020-12-18 14:05

    First download latest Build Tools 19.0.0 and 19.0.1 using your Android SDK Manager.

    Then do change buildToolsVersion "17.0.0" in to indside your build.gradle file

    buildToolsVersion "19.0.0"
    

    Because as mentioned in release documents Gradle 1.10 and android plugin 0.8 requires buildTools 19.0.0+

    build tools version requirement

    Also make sure your root project level build.gradle file has gradle plugin 0.8 as classpath like this

        classpath 'com.android.tools.build:gradle:0.8.+'
    
    0 讨论(0)
提交回复
热议问题