$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

Install Android SDK Tools Only for Ubuntu 14.04 Trusty LTS Visual-Guide

February 25, 2014 | By the+gnu+linux+evangelist.

Install Android SDK Tools Only on Ubuntu 14.04

How to Install and Getting Started with Android SDK Tools for Ubuntu 14.04 Trusty Tahr LTS i386/Amd64 Linux.

The Android SDK is a Set of Development Tools used for Android App Development on Ubuntu Linux.

The Android SDK Tools Installation is Essential for Getting Started with Android Development on Ubuntu Linux.

To the How to Install Android SDK Tools for Ubuntu 14.04 Bottom Link to Guide on Installing Appcelerator Titanium for Cross-Platform Apps Development on Ubuntu.

Install Android SDK Tools Only on Ubuntu 14.04 - Featured
  1. Download Latest Android SDK for Linux

  2. Double-Click on Archive and Extract into /tmp.

    Install Android SDK Tools Only on Ubuntu 14.04 32/64-bit - Android SDK Extraction

    Or from Command Line:

    tar xvzf ~/android-sdk*.tgz -C /tmp/
  3. Open Terminal Window
    Ctrl+Alt+t
    (Press “Enter” to Execute Commands)

    Install Android SDK Tools Only on Ubuntu 14.04 32/64-bit - Open Terminal

    In case first see: Terminal QuickStart Guide.

  4. Install Required Multi-Arch Packages.

    sudo su

    If Got “User is Not in Sudoers file” then see: How to Enable sudo

    apt-get install libstdc++6:i386 lib32z1 lib32ncurses5 libbz2-1.0:i386
  5. Relocate Android SDK

    sudo chown -R root:root /tmp/android-sdk-linux*
    chmod -R +xr /tmp/android-sdk-linux*
    mv /tmp/android-sdk-linux* /opt/android-sdk-linux
  6. Insert Android Tools into User PATH

    su <username>
    nano ~/.bashrc

    Append:

    export PATH=/opt/android-sdk-linux/tools:/opt/android-sdk-linux/platform-tools:$PATH

    Ctrl+Shift+v to Paste Content on nano
    Ctrl+x to Save and Exit.

    Load New Settings

    bash
  7. Updating Android SDK Tools & APIs.

    cd /opt/android-sdk*/tools
    sudo su -c "./android sdk"

    Re-Start the Android SDK Installer After the First, Installation to Continue with APIs and Tools Installation!

    Install Android SDK Tools Only on Ubuntu 14.04 32/64-bit - Android SDK Manager for APIs
    Restart Again if Prompted to Get Installed the Latest API…
    Install Android SDK Tools Only on GNU/Linux - Installing Latest API

    Select the wanted API’s and Build-tools and Wait Until the Download and Installation is Achieved.

  8. How to Install Required Oracle-Sun JDK 7 on Ubuntu Linux

    Install Oracle JDK for Ubuntu

    To check your current JDK version:

    javac --version && java -XshowSettings:properties -version 2>&1 | grep 'java.vendor'

    If it’s the official Oracle JDK, the output will include: java.vendor = Oracle Corporation.

  9. How to Install Eclipse IDE for Android Development on Ubuntu:
    The Link Contains a List of Guides with Detailed Instructions about Installing Eclipse-Eclipse ADT for Android on GNU/Linux Ubuntu Distro.

    How to Develop Android Cross-Platform Apps with Appcelerator on Ubuntu:
    Getting Started in Android SDK App Development with the Cross-Platform Appcelerator Titanium Studio IDE.