codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

Configuring Cordova for Android Development on Linux

Erik C. Rutledge
codeburst
Published in
3 min readJan 3, 2018

--

Java Development Kit

$ cd /usr/local
$ sudo mkdir java && cd java
$ sudo tar xzvf ~/Downloads/jdk-*****_***.tar.gz
$ cd ~
$ vim .bashrc
export JAVA_HOME="/usr/local/java/jdk1.8.0_***"
PATH=$PATH:$JAVA_HOME/bin
$ source .bashrc
$ javac -version # should print 'javac 1.8.0_***'

Android Studio

$ cd /usr/local
$ sudo unzip ~/Downloads/android-studio-ide-***.zip
$ cd android-studio/bin
$ ./studio.sh
$ cd ~
$ vim .bashrc
export ANDROID_HOME="$HOME/Android/Sdk"
PATH=$PATH:$ANDROID_HOME/tools
PATH=$PATH:$ANDROID_HOME/platform-tools

Gradle

$ sudo apt install gradle

Cordova

$ npm install -g cordova

Last call

$ cordova create reqTest
$ cd reqTest
$ cordova platform add android
$ cordova requirements# Correct response
Android Studio project detected
Requirements check results for android:
Java JDK: installed 1.8.0
Android SDK: installed true
Android target: installed android-27,android-26
Gradle: installed /usr/share/gradle/bin/gradle
$ cd ..
$ rm -r reqTest

Last last call

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Responses (8)

Write a response