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

Step-by-step – Android Studio Installation in Kali 2022

March 24, 2022 | By the+gnu+linux+evangelist.

Installing

  1. 4. Installing Dependencies

    Now to Install Required Packages
    Simply play:

    sudo apt-get install lib32z1 lib32ncurses* lib32stdc++6

    Authenticate with the User Admin Pass.
    If Got “User is Not in Sudoers file” then see: How to Enable sudo.

  2. 5. Installing Oracle JDK

    How to Install Required Oracle Java JDK on Kali

    Install Oracle JDK for Kali
  3. 6. Relocating Android Studio

    Again to Relocate Android Studio IDE
    For a System wide installation Set the superUser as Holder with:

    sudo chown -R root:root /tmp/android-studio

    Then Move the Android Studio contents into the /opt Directory:

    sudo mv /tmp/android-studio /opt/
  4. 7. Amending User’s Path

    And to Make the Android SDK Command-line Accessible
    Amend the User’s Path with:

    echo "export PATH=~/Android/sdk/platformtools:~/Android/sdk/tools:/opt/android-studio/bin:$PATH" >> ~/.bashrc

    And then to Reload the PATH simply run:

    bash

Contents