Where should the Android SDK be installed on Mac OS X?
问题:
回答1:
Now the android-sdk
is migrated from homebrew/core
to caskroom/cask
.
brew tap caskroom/cask
and install android-sdk
using
brew cask install android-sdk
You will have to add the ANDROID_HOME
to profile (.zshrc or .bashrc)
export ANDROID_HOME=/usr/local/share/android-sdk
回答2:
The easiest (and standard) way to install Android SDK under OS X is to use brew
.
brew install android-sdk
If you do not have homebrew, here's how to get it.
This will install Android SDK into /usr/local/Cellar/android-sdk/
and, at this moment, this is the best location to install it.
回答3:
My personal preference is to put it in ~/opt/local/android-sdk-mac
or /Developer/android-sdk-mac
the latter being where Xcode and all the Apple Dev tools are held.
回答4:
When I installed Android Studio 1.0 it ended up in
/Library/Android/sdk/
回答5:
By default the android sdk installer path is ~/Library/Android/sdk/
回答6:
You can install android-sdk in different ways
homebrew
Install brew using command from brew.sh/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Install
android-sdk
usingbrew install android-sdk
Now
android-sdk
will be installed in/usr/local/opt/android-sdk
export ANDROID_HOME=/usr/local/opt/android-sdk
If you installed android studio following the website,
android-sdk
will be installed in~/Library/Android/sdk
export ANDROID_HOME=~/Library/Android/sdk
I think these defaults make sense and its better to stick to it
回答7:
From http://developer.android.com/sdk/index.html, it seems that you can install the SDK anywhere, so long as you
- "execute the android tool in the
<sdk>/tools/
folder" - Add the
<sdk>/tools
directory to your system path
More info can be found here: http://developer.android.com/sdk/installing.html
回答8:
I just have mine in MyUser/Documents/Development
. I'm the only one that used my Mac, so I didn't need to worry about making it accessible system-wide.
回答9:
I put mine in /Developer/SDKs I had to authenticate to do that…but since there's no consensus I thought that it sounded like a place I'd remember.
回答10:
I ended up placing my at ~/sdks/android-sdk-mac_x86. I like to keep all of my SDKs in one place and for me an sdk folder under my home directory makes the most sense.
回答11:
I have been toying with this as well. I initially had it in my documents folder, but decided that didn't make 'philosophical' sense. I decided to create an Android directory in my home folder and place Eclipse and the Android SKK in there.