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

How to Install Android SDK on Ubuntu 13.04 Raring 64-bit Step-by-Step Visual-Guide

April 29, 2013 | By Duchateaux.

Install Android SDK Tools Only for Ubuntu 13.04 64-bit

How to Install Android SDK Tools for Ubuntu 13.04 Raring Ringtail Amd64 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 13.04 Bottom Link to Guide on Installing Appcelerator Titanium for Cross-Platform Apps Development on Ubuntu.

How to Install Android SDK on Ubuntu 13.04 Raring 64-bit Step-by-Step Visual-Guide

    How to Install Eclipse IDE for Android Development on Ubuntu:

    Install Android ADT on Ubuntu
  1. Download Latest Android SDK for Linux

    Android SDK Linux .tgz
  2. Double-Click on Archive and Extract into /tmp.

    Install Android SDK Tools for Ubuntu 13.04 Linux - Android SDK Extraction

    Or from Command Line:

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

    Install Android SDK Tools for Ubuntu 13.04 Linux - 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 ia32-libs
  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*
    sudo su -c "tools/android"
    Install Android SDK Tools for Ubuntu 13.04 Linux - 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 Develop Android Cross-Platform Apps with Appcelerator on Ubuntu

    Appcelerator Titanium Studio for Ubuntu