Eclipse: Konfigurasi SDK

Revision as of 01:25, 22 March 2023 by Kangtain (talk | contribs) (Created page with "First thing first, you need to download Android SDK for Linux [http://developer.android.com/sdk/index.html here]. It's around 80MB so it might take a while to download. Once downloaded, run the following commands:<syntaxhighlight lang="bash"> sudo cp -r android-sdk_r20.0.1-linux.tgz /opt </syntaxhighlight><syntaxhighlight lang="bash"> cd /opt </syntaxhighlight><syntaxhighlight lang="bash"> sudo tar xvzf android-sdk_r20.0.1-linux.tgz </syntaxhighlight><syntaxhighlight lan...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

First thing first, you need to download Android SDK for Linux here. It's around 80MB so it might take a while to download. Once downloaded, run the following commands:

sudo cp -r android-sdk_r20.0.1-linux.tgz /opt
cd /opt
sudo tar xvzf android-sdk_r20.0.1-linux.tgz
sudo chmod -R 755 /opt/android-sdk-linux

Then run the SDK Manager to download necessary libraries and APIs:

cd /opt/android-sdk-linux/tools
sudo ./android sdk

Well, if you want to develop Android application for Android 2.3.3 then you should Android 2.3.3 (API 10). For further information about Android platforms and packages please click here.

Source