Reputation: 2543
The error I get:
Error:The SDK Build Tools revision (19.0.3) is too low for project ':app'. Minimum required is 19.1.0
How do I change the SDK build tools version?
Upvotes: 1
Views: 366
Reputation: 1016
You have to go into your build.gradle file and change your Build to this:
android {
compileSdkVersion 19
buildToolsVersion "19.1.0"
It should be located in your project folder (the one that contains src and build folders). If you can't find it in your build.gradle file, it's possible there's a second file that has this correct piece. Note, only change the buildToolsVersion
, don't add anything else.
Upvotes: 2