0

I have got following error message:

AssertionError: build-tools-23.0.0 doesn't match build-tools-23.0.0-preview

Already tried to install it, but I see this message in Android Studio:

enter image description here

Where should I update version number to latest in libGDX project?

2 Answers2

1

At first please post your build.gradle .

build-tools-23.0.0 doesn't match build-tools-23.0.0-preview

I assume problem is your buildToolsVersion

You can use this

compileSdkVersion 23
buildToolsVersion '23.0.1'
IntelliJ Amiya
  • 74,896
  • 15
  • 165
  • 198
0

you have go to "android sdk manager" and download "android sdk build-tools" version 23.0.2 after done download

go to "build.gradle" and use buildToolsVersion "23.0.2"

try this way

keep your internet connection click on "File" on android studio toolbar and click on "invalidate Caches/Restart..." and choose "invalidate and restart"

mehrdad khosravi
  • 2,228
  • 9
  • 29
  • 34