Skip to content Skip to sidebar Skip to footer

How To Change Build Tools Version In Android Studio 3.0.1?

I just upgraded my Android studio from 2.3 to 3.0.1. But I get this error message(I have already installed API 27 ) and don't know how to fix it, because I couldn't find the the bu

Solution 1:

Your project is looking for Build Tools version 26.0.2, but you haven't yet downloaded and installed it on your computer.

To download it, go to Tools > Android > SDK Manager, then click on the "SDK Tools" tab at the top of the new window. Then select the "Show Package Details" checkbox in the lower right-hand corner. Finally, scroll down to where you see 26.0.2, check the checkbox next to it, and click "OK" to begin the install process.

If you want to change the Build Tools version in your project, that is specified in project's build.gradle file (in the 'app' module). Open the file and either add or update the Build Tools version you want to use by adding/updating the following property in the 'android' section:

android {
    buildToolsVersion "27.0.3"
    ...
}

Post a Comment for "How To Change Build Tools Version In Android Studio 3.0.1?"