470
edits
m (Created page with '=== Misc Notes about Android Build environments === ==== Headless Android SDK Installs ==== If your a fan of GUIs, installing the base SDK and platforms is as simple as running…') |
|||
| Line 29: | Line 29: | ||
if you take the repository.xml url http://dl-ssl.google.com/android/repository/ and add the sdk:url item's value you get the download path for the 2.2 SDK zip file. | if you take the repository.xml url http://dl-ssl.google.com/android/repository/ and add the sdk:url item's value you get the download path for the 2.2 SDK zip file. | ||
==== SDK Install "recipe" ==== | |||
* Download the base SDK | |||
wget http://developer.android.com/sdk/download.html?v=android-sdk_r06-linux_86.tgz | |||
* download the platform SDK(s) | |||
wget http://dl-ssl.google.com/android/repository/android-2.2_r01-linux.zip | |||
* extract the base SDK and "install" the platform SDK | |||
tar xf android-sdk_r06-linux_86.tgz | |||
cd android-sdk-linux_86/platforms | |||
unzip /path/to/it/android-2.2_r01-linux.zip | |||
mv android-2.2_r01-linux android-r8 | |||
edits