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

How to Install Android NDK Development Kit on Elementary OS Gnu/Linux Easy Guide

August 23, 2019 | By the+gnu+linux+evangelist.

Installing NDK

  1. 6. Downloading

    Download Android Native Development Kit for Linux

    Here Android NDK Linux 64-bit .zip
    Link to Download Latest Android Native Development Kit for GNU/Linux .tar.bz2 Archive
  2. 7. Extracting

    Then Extract into /tmp
    Possibly, Double-Click or Right-Click and Open with Archive Manager:

    How to Install Android NDK Development Kit on Elementary OS GNU/Linux - Android NDK Extraction

    Or from Command Line:

    Copy
    tar xvf android-ndk*.tar.bz2 -C /tmp
  3. 8. Installing

    Now to Install Android NDK
    First, Set the SuperUser as Owner with:

    Copy
    sudo chown -R root:root /tmp/android-ndk*

    And then Relocate Android NDK Folder:

    Copy
    sudo mv /tmp/android-ndk* /opt

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

  4. 9. Setting Up ANDROID_NDK Env

    Finally, Set Up ANDROID_NDK Environment Variable
    Again Editing the same File:

    Copy
    nano ~/.bashrc

    So as in our Setup, Append:

    Copy
    exportANDROID_NDK=/opt/android-ndk*
    export PATH=$PATH:$ANDROID_NDK