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

How to Install Android SDK Tools for Linux Ubuntu 12.04 Precise 32bit Easy Step-by-Step Visual-Guide

September 24, 2012 | By Duchateaux.

The Guide shows you Step-by-Step How to Install and Getting-Started with Android SDK Tools Latest Revision for Ubuntu 12.04 Precise Pangolin i386 Desktop.

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

The content of the Guides give Focus only to the Essentials Instructions and Commands for an easier understanding ;)

How to Install Android SDK Tools for Linux Ubuntu 12.04 Precise 32bit Easy Step-by-Step Visual-Guide
  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

    Ubuntu Linux Extract Android SDK

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

    Ubuntu Linux Open Terminal

    In case first see: Terminal QuickStart Guide.

  4. Relocate Android SDK.

    Copy
    sudo su

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

    Copy
    mv /tmp/android-sdk-linux /opt
  5. Installing Android SDK for Linux.

    1. Access Target
      Copy
      cd /opt/android-sdk-linux/tools
    2. Start Android SDK Manager
      Copy
      ./android sdk
    3. Select Android SDK Features
      Ubuntu Linux Start Android SDK Manager

      Select Accept All to Install All Default Checked Features.

      Ubuntu Linux Select Android SDK Features
    4. Installing Android SDK
      Ubuntu Linux Updating Android SDK
  6. Insert Android Tools into User PATH

    Copy
    su <username>
    Copy
    nano ~/.bashrc
    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. How Add Android Integration to Eclipse Platform:

    Here How to Install ADT Eclipse Plugin
    How to Get Started with Android Dev on Eclipse IDE
  8. Getting-Started Coding Hello-World Android App on Eclipse:

    Here Android App Hello-World