Android build error using build.xml: 479: there are no built-in build tools in the SDK

Why did my build fail?

{android-sdk} /tools/ant/build.xml-00-0079: SDK has no assembly Installed tools

It started showing up after upgrading SDK tools to 22

+52
android
May 19 '13 at 5:21
source share
6 answers

http://andrewma.com/2013/05/18/resolving-sdk-does-not-have-any-build-tools-installed-error/

After updating my Android SDK to 22, I started working with failed builds with an error message:

{android-sdk} /tools/ant/build.xml-00-0079: SDK has no assembly Installed tools

I could not find much on the Internet about how to solve this problem, and in the end I realized that it was because I only updated the existing packages. In SDK 22, platform tools and build tools are broken down into their own elements in the SDK manager.

Make sure you install build tools and platform tools.

+74
May 19 '13 at 5:21
source share

try to run

android update sdk -u 

in the terminal.

You will see such magazines on the screen.

 Installing Archives: Preparing to install archives Downloading Android SDK Platform-tools, revision 17 Installing Android SDK Platform-tools, revision 17 Stopping ADB server succeeded. Installed Android SDK Platform-tools, revision 1799%) Downloading Android SDK Build-tools, revision 17 Installing Android SDK Build-tools, revision 17 Installed Android SDK Build-tools, revision 1799%) Downloading ARM EABI v7a System Image, Android API 17, revision 2 (71%, 775 KiB/s, 41 seconds left)) 

After successfully updating the Android SDK, make sure the build tools are installed.

enter image description here

+74
May 23 '13 at 7:13
source share

I installed Build Tools using the SDK manager. They look installed, but it is not. My {SDK} / build-tools folder is just empty.

I just downloaded sdk from http://developer.android.com/sdk/index.html and moved the android-4.2.2 folder to my tools folder.

+1
May 20 '13 at 8:55
source share

Just go to .buildozer/android/platform/andoridsdk/tools and run the Android SDK GUI. Install the latest build tools. I just worked on it; I installed buildtools 19.1 and the packaging was successful.

0
Oct 09 '15 at 6:39
source share

Since you do not have built-in tools for the Android SDK:

$ ~/Desktop/android/tools/android

enter image description here

0
Feb 25 '17 at 21:23
source share

To install manual builders, follow the link: https://dl-ssl.google.com/android/repository/repository-8.xml Scroll down to <---- build-tools ----> Copy the link of the zip file ( which depends on the operating system of the development environment) and paste it into the url field and click the search button. Save it somewhere, extract it to the collectors folder.

-2
Jul 13 '14 at 1:16
source share



All Articles