Reputation: 54949
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
Reputation: 3697
download and install the JDK
download and unzip the android SDK (from developer.andriod.com)
export the path to the android sdk (in ~/bash.rc append the line)
export PATH=${PATH}:/path/to/the/sdk/tools/folder
Download and install eclipse
Download the eclipse Plugin
Start eclipse
Click Help -> Software Updates
Click Availble Software
Add Site
Enter the path to the plugin
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