Mac Os X Android Sdk Location



  1. Mac Os X Android Sdk Location Windows
  2. Android Sdk Location In Windows
  3. Android Sdk Location Mac
  4. Android Sdk Tools

I’ve got at least two concepts for Android apps running around in my head, notebooks & text files at the moment. Being a web developer for some years now, and having developed a Windows app or two, I figured I would be able to start prototyping these concepts for Android without too much hassle.

Rm -rf /.android-sdk-macosx/ Download the Mac SDK Tools from the Android developer site under 'Get just the command line tools'. Make sure you save them to your Downloads folder. Go to your Downloads folder. Cd /Downloads/ Unzip the tools you downloaded. Unzip toolsr.-macosx.zip Move them somewhere you won't accidentally delete them. Select Window Preferences to open the Preferences panel (Mac OS X: Eclipse Preferences). Select Android from the left panel. For the SDK Location in the main panel, click Browse and locate your downloaded SDK directory. Click Apply, then OK. If you haven’t encountered any problems, then the installation is complete.

So far, the hardest and most frustrating part of this process has been installing the SDK. Part of the hassle I’ve had is that most online resources only explain the steps required for users of Eclipse (which automates a bit of it for you). The most frustrating bit was forum answers which simply told you to install Eclipse to fix whatever code-related problem the asker was having.

I want to avoid Eclipse, for two main reasons:

  1. Eclipse is nasty to use, convoluted resource-hog. It’s slower than a wet week on my Mac, plus it hasn’t functioned as it should when I’ve attempted to use it in the past (and man, that interface is yuck).
  2. See reason 1.
  • Use the USB cable that came with your Android device and connect it to your Mac. Double click Android File Transfer. Browse the files and folders on your Android device and copy files.
  • If you have not installed plugin for eclipse, install it first. If the plugin is installed, setup preferences: “Eclipse””Preferences”, in left column choose “Android”(do not expand list, just choose root element), and first preference will be “SDK Location”.

The other hassles I’ve had is with the lack of accurate documentation. The resources I’ve been reading have overlooked some vital steps in the process of installing the SDK and getting your first app up and running.

Mac Os X Android Sdk Location

I’m going to explain the steps I took to install the latest version of the Android SDK on my Mac OS X 10.7, plus the extra steps needed to get my first app working. These instructions are based on the official developer.android.com instructions on “Building Your First App“, but instead of any IDE I’ll be using the command line and TextWrangler.

The first step is to download the SDK. I opted to download the non-bundle version (under the heading “Use an existing IDE”). Open this and extract it. I chose to locate it in the directory /Android/ (in the root of my main hard drive). I will be referring to this path from now on. If you want to save it elsewhere, please translate that path in your head.

Next, go to /Android/tools/ and run the android file. It will open up a Terminal window, and then launch a GUI. This is the Android SDK Manager, and it is how you obtain the latest copy of the SDK, as well as extra tools and libraries you may need. I opted to download the entire “Tools” folder, the entire folder of the latest SDK (Android 4.2 – SDK 17), and the Android Support Library (under “Extras”).

Android studio

The next step is to install Apache ANT. ANT is used to automate the build process, and is necessary for most users. You could build manually, but the ANT tool will save you a lot of time. This step was left out of the guides I read, and caused some confusion when it came time to build. Download the binary, and extract it. I then created the folder /Android/ant/ and copied the entire bin and lib folders into there.

The next step is to add ANT’s bin folder to PATH. This is a system-wide variable used by the operating system to allow you to directly open the contents of a folder without needing to specify it’s full folder path. As an example, I could type /Android/ant/bin/ant into the command line, or I could just type ant – they both do the same thing.

On Mac OS X, you add a folder to the PATH variable by running this command in Terminal:

  • PATH=$PATH:/Android/ant/

The manual also says you should add the environmental variable ANT_HOME and set it to the main ANT folder (/Android/ant/), but I didn’t do this and haven’t had any issues yet.

Check you’ve installed it correctly by typing ant into Terminal and looking for this output: “Buildfile: build.xml does not exist! Build failed”

Mac Os X Android Sdk Location Windows

You also need to add the /Android/platform-tools/ and /Android/tools/ folders to the path variable. Execute these commands one at a time:

Android sdk download for windows 10

Android Sdk Location In Windows

  • PATH=$PATH:/Android/platform-tools/
  • PATH=$PATH:/Android/tools/
Sdk

You are now ready to create, build, and run a bare bones app. The official instructions are fine here, so read the pages “Creating an Android Project“, “Running and Application“, and “Building a Simple User Interface“.

Tip about emulators: If your computer isn’t loaded up with a whole heap of CPU power, try create a virtual Android device with a smaller resolution and DPI. I’m running a 5.1″ WVGA 480 x 800 device on my several year old MacBook just fine, where as the higher res and DPI devices would take a long, long time to load and sometimes crash.

Tip about Reinstalling: The process where you install an app into the emulator doesn’t like it if you already have an older copy of that app installed. I have been manually deleting it each time by holding down the mouse on the icon and dragging it towards the “Uninstall” icon which appears. There is probably a way to automate this, but I haven’t found it yet.

The last page where you create another Activity lacks a few instructions. You need to manually add some imports to the top of your Java files before they will compile. These are listed in the instructions, except for one: import android.support.v4.app.NavUtils;

This last one tripped me up a bit, as I hadn’t installed the Android Support Library at the start. As you did, you shouldn’t have issues with this triggering a compile error.

Android Sdk Location Mac

By now you should have be able to run your app in the emulator and create a new view. For me, this whole process was incredibly painful and took well over an hour to figure out. Writing it all down, it does seem a lot easier than it felt at the time, but I suppose hindsight is 20/20. With any luck, my publication of these tips has helped you.

Android Sdk Tools

Also, stay tuned for information about our upcoming Android products.