Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't find ant in the Android SDK

Tags:

android

I'm working my way through APress's Beginning Android 2 and I've made it all the way to chapter 3, where we build a skeleton app. The book tells me to compile my application by typing "ant" in the command line, but my pc doesn't know what "ant" is yet. I checked in the SDK files and it looks like it wasn't included with the Android SDK. Does anybody know where ant is?

Thanks

like image 811
StormShadow Avatar asked Apr 05 '10 08:04

StormShadow


People also ask

How do I fix Android SDK not found?

Quick fix: Uninstall Android SDK (default location C:\Users\.. \AppData\Local\Android\Sdk ) and install it again. This time affirms the minimum required storage space at your place of download. After execution check, if tools folder is now added in SDK directory.

How do I fix SDK location not found?

Close the current project and you'll see a pop-up with a dialog which will then proceed to Configure option. Configure -> Project Defaults -> Project Structure -> SDKs on left column -> Android SDK Home Path -> give the exact path as you did on local. properties and select Valid Target.

How do I find Android SDK location?

by default, the "Android Studio IDE" will be installed in " C:\Program Files\Android\Android Studio ", and the "Android SDK" in " c:\Users\username\AppData\Local\Android\Sdk ".

How do I find Android App SDK?

Navigate to “Appearance & Behavior” > “System Settings” > “Android SDK” and now you can see the SDK versions that were installed in the “API Level” and “Name” columns (focus on “API Level”).


2 Answers

Ant isn't included with the Android SDK. I suggest you get it from the official site.

like image 61
Jim Blackler Avatar answered Oct 04 '22 13:10

Jim Blackler


Ant is tool to build projects from commondline and it is different tool. It's not android specific. So if your are using a Debian-based/Ubuntu machine you can install it by

sudo apt-get install ant  
like image 38
HariRam Avatar answered Oct 04 '22 15:10

HariRam