Wall's Corners Wall's Corners Author
Title: Install Android, Cordova, and Ionic Framework in Ubuntu
Author: Wall's Corners
Rating 5 of 5 Des:
After recognizing that I develop almost entirely on Ubuntu Linux , a subscriber of mine asked me how to properly set up an Ubuntu machine fo...

After recognizing that I develop almost entirely on Ubuntu Linux, a subscriber of mine asked me how to properly set up an Ubuntu machine for Ionic Framework Android development.  Now there are a ton of options to handle this task, but not many bare bones solutions.  Most solutions on the internet explain how to use an IDE, or fail to elaborate a complete installation.

If you’re not interested in learning how to accomplish the task of installing NPM, Android, Apache Cordova, and Ionic Framework, you can just download a convenient shell script that I made.  If you want to know how this shell script works and would like to get the most out of it, continue reading the article.

To install everything using the shell script I provided, download it and do the following:

The above will make the script executable and then it will be installed using a privileged account.  Failing to use sudo will probably give you strange results.

The installation script will download and configure the following:

  • Java JDK
  • Apache Ant
  • Android SDK
  • NodeJS / NPM
  • Apache Cordova
  • Ionic Framework

You can find most of these items installed to your operating system’s /opt directory.  Once setup has completed, you will need to restart your Ubuntu session, by logging out or restarting your machine.  When you sign back in you will need to download the various Android targets that could not be installed via a command line.

To download the necessary Android targets and platform tools you will need to enter android from a command prompt to launch the Android UI.

Install Android Targets

Start by installing whatever the SDK Manager recommends when launching it.  You will need Android API 19 for Ionic Framework, so install that when you’re able to.

So what exactly are we doing in this wonderful script?  Pretty much only very basic downloading and extracting in an automated fashion.

Let’s start by looking at the following line:

The above line of code will parse the system’s CPU information looking for the architecture.  Because there are no universal binaries for x86 and x64 architectures we need to figure out what we are installing.  The above line will either return x86_64 for 64-bit architectures or i686 for 32-bit architectures.

Next in our script we want to update our Ubuntu software repository list.  Because we will be installing Java and Ant from the software channel, we need it to be up to date.  Updating the list can be done as follows:

Because the file names for each Ubuntu architecture are different, we need to create a conditional that first determines which binary set should be downloaded and installed.  If you’re familiar with , you’ll know that we can do this check like so:

For the x86 and x64 architectures, the process is pretty much the same.  Only the file names are different.  However, a critical difference in the x64 architecture is that we need to download a few x86 libraries.  This can be done as follows:

Once that’s done we start downloading the defined versions of and the Android SDK by making use of the wget command.  After downloading, we need to extract the tarballs and rename the directories for easier management.  All this can be demonstrated below:

Since the Android SDK is being placed in a location that requires higher permissions, we need to change the permissions to allow for read and write.  This is because the SDK doesn’t ship with everything out of the box.  You’ll need install these items after running the install script.

When our NodeJS and Android SDK directories are placed in the correct location, we need to make sure that they get added to our user profile.  Adding the paths to the user profile makes them usable every time you sign into your computer.  Adding to the profile can be done like so:

Adding to the profile isn’t good enough for our script because for changes to happen the Ubuntu session must be restarted.  Because of this, we also need to temporarily alter our path by running the following:

Just a few things left to do, then we are done.  By default, Ubuntu doesn’t ship with the Java JDK or Apache Ant.  These must be installed separately.  Because I wanted to keep a silent installation, I added a few tags to a standard install:

The last thing we want to do before cleanup, is install Apache Cordova and Ionic Framework using NPM:

Just like that we are good to go.  If everything went smooth you should be able to use Ionic Framework with Android in a few lines of code:

If you’re interested in seeing the code to this script you can either download and open it in a text editor, or see below:

A video version of this article can be seen below.

 

 

Share This:

View more at: http://bit.ly/1XReQFr

About Author

Advertisement

Post a Comment

 
Top