Showing posts with label eclipse. Show all posts
Showing posts with label eclipse. Show all posts

Thursday, October 29, 2015

Ubuntu Developer Tools Center 0.1 Released With Eclipse And Android ADT Support

Update: Ubuntu Developer Tools Center has been renamed to Ubuntu Make.

Ubuntu Developer Tools Center (UDTC) 0.1 was released today and it includes support for Eclipse as a standalone IDE, Android ADT support (through Eclipse) and more. 

Ubuntu Developer Tools Center Eclipse

A couple of months ago, Canonical released Ubuntu Developer Tools Center (UDTC), a project to "enable quick and easy setup of common developers needs on Ubuntu". Using it, you can easily install Android Studio and the Android SDK in Ubuntu and, with the latest version, Eclipse and Android ADT (for Eclipse).

In the release announcement, Didier Roche, Software Engineer at Canonical, mentioned that for now, Canonical is focusing on Android developers, but more will follow, like Go developers, web developers, Dart and more.

Changes in Ubuntu Developer Tools Center 0.1:
  • added Eclipse support as a standalone IDE. Usage: udtc ide eclipse;
  • added Android ADT support (through Eclipse). Usage: udtc android eclipse-adt;
  • adb and other Android tools are now added to user path while installing an Android framework;
  • UDTC now supports framework removal. If you installed a framework and want to remove it, just use: udtc android android-studio --remove;
  • enabled loading of local framework. They are controlled by UDTC_FRAMEWORKS env variable which can point to any path containing local frameworks;
  • added support for reinstallation in different folder than the origin one, cleaning the original directory;
  • DownloadCenter now support redirections;
  • added support for decompressing zip files in Decompressor;
  • new and refresh translations: de, en_AU, en_CA, en_GB, es, eu, fr, hr, it, pl, ru, te, zh_CN, zh_HK;
  • improved i18n support;
  • protect against mistyping with multiple frameworks;
  • framework support refactoring to avoid code duplication;
  • tests fixes and refactoring for better scalability;
  • fixed logging support during test runs;
  • reshape docker files to have fewer layers;
  • don't raise any Exception for unexpected CLI args.


Install Ubuntu Developer Tools Center


The latest Ubuntu Developer Tools Center 0.1 is available in the Ubuntu 15.04 Vivid Vervet repositories. 

For Ubuntu 14.10 and 14.04, you can install the latest Ubuntu Developer Tools Center by using a PPA:
sudo add-apt-repository ppa:didrocks/ubuntu-developer-tools-center
sudo apt-get update
sudo apt-get install ubuntu-developer-tools-center

That's it. You can now use UDTC to install Android Studio, Eclipse and add Android adt support (through eclipse).

Install Android Studio by using the following command:
udtc android
Then, choose the installation path (or use the default path), accept the license ("a") and UDTC will do the rest, installing Android Studio and Android SDK. UDTC will even add Android Studio to the Unity Launcher.

Update: the latest Android Studio doesn't ship the sdk with it anymore so for now you'll have to download it manually. Hopefully future UDTC versions will have a solution for this.

To install Eclipse (Eclipse Luna 4.4 at the time I'm writing this article), simply use the command below:
udtc ide eclipse
After installing it (just like with Android Studio), UDTC will add Eclipse to the Unity Launcher.

For Android ADT support (through Eclipse), use the following command:
udtc android eclipse-adt

If you want to remove a framework, simply append "--remove" to the commands above. For example, to remove Eclipse, use the following command:
udtc ide eclipse --remove

If you want to help with the Ubuntu Developer Tools Center development, report bugs, etc., check out its GitHub page.

Read more »

Tuesday, October 6, 2015

Ubuntu Developer Tools Center Renamed To Ubuntu Make, Sees New Release

Ubuntu Developer Tools Center, a project to allow easy installation of common developer tools, has reached version 0.2. With this release, the project was renamed to Ubuntu Make, based on name proposals from the community.

Android Studio Ubuntu Make

For now, Canonical is focusing on Android developers with Ubuntu Make, allowing easy installation of Android Studio and Eclipse, but in the future, the tool will also target Go, web and Dart developers.

Ubuntu Make 0.2 was released today and and besides the name change, it brings a fix for the Android Studio installation, which reached the 1.0 milestone and also, ADT was removed because "upstream doesn't provide any bundle anymore as this tools is deprecated in favor of Android Studio", mentions the Ubuntu Make changelog.

It's also important to mention that Android Studio doesn't ship with the Android SDK any more but it can be installed from the Android Studio Setup Wizard:

Android Studio Setup Wizard Ubuntu

Why doesn't Canonical provide these tools directly in Ubuntu Software Center? None of Didier Roche's (the main Ubuntu Make developer) articles mention this however, Alan Pope, Engineering Manager at Canonical, posted a comment on failsdownloads a while back, saying that "With Software Center (or indeed any repo) someone has to build packages and submit them, with this, they don't. They get the latest crack with one command", so it looks like it's simply easier to provide these tools with Ubuntu Make.


Install Ubuntu Make


The latest Ubuntu Make is already available in the Ubuntu 15.04 Vivid Vervet official repositories so if you're using Vivid, install it via Ubuntu Software Center or using the following command:
sudo apt-get install ubuntu-make

Ubuntu 14.04 and 14.10 users can install Ubuntu Make by using its official PPA (the PPA has changed so if you've added the old UDTC PPA, remove it and add this one instead!). To add the PPA and install Ubuntu Make, use the commands below:
sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
sudo apt-get update
sudo apt-get install ubuntu-make

You can then use the new "umake" command ("udtc" still works for now) to install Android Studio and / or Eclipse in Ubuntu.

To install Android Studio using Ubuntu Make, use:
umake android

To install Eclipse, use:
umake ide eclipse
("umake ide" also works, but when the tool will get support for more IDEs, this will install all of them)

To remove Android Studio or Eclipse, simply append "--remove" at the end of the commands above. For instance, to remove Eclipse, use:
umake ide eclipse --remove

If you want to help with the Ubuntu Developer Tools Center development, report bugs, etc., check out its GitHub page.
Read more »