0

When building android project, I meet following problem:enter image description here

罗路遥
  • 185
  • 1
  • 11

2 Answers2

1

I just had this problem, Android Studio prompts in bottom window pane should do this for you but if you can't figure it out, do it manually by changing build tools in gradle to this:

 classpath 'com.android.tools.build:gradle:2.1.0-beta3'
MobileMon
  • 8,341
  • 5
  • 56
  • 75
0

Upgrade your buildtools to the lastest such as 23.0.2.

You can edit it in your build.gradle file like this:

android {
...
buildToolsVersion "23.0.2"
...
}

hope it works for you.

hyongbai
  • 244
  • 1
  • 8