Reputation: 1932
I understand that phonegap 3 no longer requires Eclipse to compile the code and that this is now done directly via just the command line.
Apart from using Eclipse to right code in, is there any other advantages to using it, instead of just using sublime 2 ?
Would an advantage be that Eclipse has a built in android emulator?
Upvotes: 0
Views: 296
Reputation: 454
As long as you build the .apk with PhoneGap build or the CLI you only really need the Android SDK and specifically adb to debug effectively on a physical device or on the emulator.
I usually build and test most things in Chrome, then test specifics using an Android device running
adb logcat
There is no real use for Eclipse unless you actually want to use it (and for JavaScript, why would you?)
Upvotes: 0
Reputation: 2569
It is really going to come down to personal preference. My choice is to use Aptana Studio (built on Eclipse) for development.
Eclipse does not have a built in android emulator. You need to install the Android SDK, build an AVD and install the Eclipse plugin. This will allow you to run your code inside of the Android emulator but it is not built in to Eclipse. The same could be done with Aptana Studio.
Upvotes: 1