罗路遥
罗路遥

Reputation: 185

how to solve AAPT err

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

Upvotes: 0

Views: 359

Answers (2)

MobileMon
MobileMon

Reputation: 8661

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'

Upvotes: 1

hyongbai
hyongbai

Reputation: 254

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.

Upvotes: 0

Related Questions