Asked
Active
Viewed 335 times
2 Answers
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