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
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+
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.+'