Harsha M V
Harsha M V

Reputation: 54949

Android Development Environment Linux

I wanna setup Android Development Environment in Linux. I have done it in Windows before but wanna set it up in Linux. Is there any guide on how i can do it ?

Downloaded Eclipse, Java JDK, ADT, SDK for linux

the SDK is around 25mb only. Looks like it doesnt have the platform files. From where can i download the platform files for 2.2 and 2.3.

I dont have internet on the linux machine.

Upvotes: 2

Views: 2564

Answers (1)

Eric Fode
Eric Fode

Reputation: 3697

  1. download and install the JDK

  2. download and unzip the android SDK (from developer.andriod.com)

  3. export the path to the android sdk (in ~/bash.rc append the line)

    export PATH=${PATH}:/path/to/the/sdk/tools/folder

  4. Download and install eclipse

  5. Download the eclipse Plugin

  6. Start eclipse

  7. Click Help -> Software Updates

  8. Click Availble Software

  9. Add Site

  10. Enter the path to the plugin

  11. select the plugin and install


That should do it... Look here http://www.softwarepassion.com/setting-up-android-development-platform-on-ubuntu-linux-904/ and here http://fyi.oreilly.com/2009/02/setting-up-your-android-develo.html for more info

Upvotes: 1

Related Questions