Download and Install Eclipse IDE
http://www.eclipse.org/downloads/
Android offers a custom plugin for the Eclipse IDE, called Android Development Tools (ADT).
Following steps in link to install ADT Plugin into Eclipse
http://developer.android.com/sdk/installing/installing-adt.html
** If you can not find Android SDK Manager in Window –> Android SDK Manager,
go to Window –> Customize Perspective –> Tool Bar Visibility.
Enable options in Android SDK and AVD Manager.
Install NodeJS on Fedora
NodeJS is currently not part of the standard repo’s, you can not install directly using yum.
First of all, Install Dependencies
# yum install openssl-devel # yum install gcc-c++ -- OR -- # yum groupinstall 'Development Tools'
Then download and install NodeJS
# mkdir ~/sources # cd ~/sources # wget http://nodejs.org/dist/node-latest.tar.gz # tar zxvf node-latest.tar.gz # cd node-v<TAB> # ./configure # make # make install # mv /root/sources/node-v0.10.1/out/Release /opt/node-v0.10.1 # ln -s /opt/node-v0.10.1/node /usr/bin/node
NOTE: When you cd to the newly created directory, type “cd node-v” and then hit your TAB key for tab completion.
The full directory name will be something like /root/sources/node-v0.10.1
Test NodeJS
# node v0.10.1
More tutorials of set up PhoneGap development environment
http://docs.phonegap.com/en/edge/guide_platforms_android_index.md.html#Android%20Platform%20Guide
http://www.howtoforge.com/setting-up-an-android-app-build-environment-with-eclipse-android-sdk-phonegap-fedora-14