GNU/Linux Fedora Installing Android NDK – Step by step Guide
How to Install Android Native Development Kit on Fedora 35/36/37/38/39/40/41/42/Rawhide 64-bit GNU/Linux desktop – Step by step Tutorial.
And the Android NDK for Fedora is a Toolset that allows you to Implement parts of your App using Native-Code Languages such as C and C++.
Android Development Require Oracle Java JDK 6+, so I have included a Link to Oracle JDK Fedora Installation Guide.
Moreover, the Android NDK Setup Require also the Android SDK so you will Find also detailed instructions to Install it on Fedora.
Finally, you find Guide to Getting Started with NDK Development on Eclipse IDE.

-
1. Launching Terminal
Open Terminal Window
(Press “Enter” to Execute Commands)
-
2. Installing Android SDK
Install Required Android SDK Tools Only for Fedora
But if you Prefeer instead Install Android Studio IDE that includes the Tools…
-
3. Setting Up Android SDK Env
Provide also to Set Up ANDROID_HOME Environment Variable
Editing the Bash Config User’s File:nano ~/.bashrc
Example Append (Following your SDK Installation Location):
export ANDROID_HOME=/opt/android-sdk-linux export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools
So you may Replace the ANDROID_HOME Path with your’ actual one…
Ctrl+x to Save & Exit from nano Editor.
Contents