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

How to Install Android SDK Tools on Xubuntu 13.04 Raring 64-bit Easy Visual-Guide

April 29, 2013 | By Duchateaux.

Install Android SDK Tools Only on Xubuntu 13.04 Amd64

The Guide Simply shows you Step-by-Step How to Install and Getting-Started with Android SDK Tools Latest Revision for Linux Xubuntu 13.04 Raring Ringtail Amd64 Desktop.

And this Visual Guide includes the Basic Screenshots of All GUI Steps involved.

The Contents and Details of Android SDK Installation Xubuntu are Expressly Minimal to Give Focus Only to the Essentials Instructions and Commands and Make the Tut Easier to Understand ;)

Install Android SDK Tools Only on Xubuntu 13.04 Amd64 - Featured

    How to Install Eclipse IDE for Android Development on Xubuntu:

    Here Install Android ADT for Xubuntu
    How to Install and Getting-Started with Android Development on Xubuntu Linux Distro by Eclipse ADT for Android
  1. Here Download Latest Android SDK rN:

    Android SDK Tools Linux .tgz
    Link to Download Latest Android SDK Tools
  2. Double-Click on Archive and Extract into /tmp

    Install Android SDK Tools Only on Xubuntu 13.04 Amd64 - Eclipse ADT for Android Extraction

  3. Open Terminal Window
    (Press “Enter” to Execute Commands)

    Install Android SDK Tools Only on Xubuntu 13.04 Amd64 - Open Terminal

    In case first see: Terminal QuickStart Guide.

  4. Install Prerequisite Package

    Copy
    sudo su

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

    Copy
    apt-get install ia32-libs

  5. Relocate Android SDK

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

    Copy
    su <username>
    Copy
    nano ~/.bashrc

    Append:

    Copy
    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

    Copy
    bash
  7. Updating Android SDK Tools & APIs.

    1. Start Android Sdk Installer
      Copy
      cd /opt/android-sdk*
      Copy
      sudo su -c "tools/android"
    2. Select Android SDK Features
      Install Android SDK Tools Only on Xubuntu 13.04 Amd64 - Start Android SDK Manager

      Select Accept All to Install All Default Checked Features.

      Install Android SDK Tools Only on Xubuntu 13.04 Amd64 - Select Android SDK Features
    3. Installing Android SDK
      Install Android SDK Tools Only on Xubuntu 13.04 Amd64 - Updating Android SDK
  8. Getting-Started Coding Hello-World Android App on Eclipse:

    Here Android App Hello-World