Top "Android-ndk" questions

The Android Native Development Kit (NDK) is a companion tool to the Android SDK that lets build performance-critical portions of apps in native code or port existing libraries in C/C++ to Android.

Android Fatal signal 11 (SIGSEGV) at 0x636f7d89 (code=1). How can it be tracked down?

I've been reading the other posts on tracking down the reasons for getting a SIGSEGV in an Android app. I …

android android-ndk android-service segmentation-fault
java.lang.ClassNotFoundException: Didn't find class on path: dexpathlist

I'm currently working on a project in which I have to use purely native ndk. It worked when I try …

java android c++ android-ndk
Error: No toolchains found in the NDK toolchains folder for ABI with prefix: llvm

I want to compile an open source android project (Netguard) using gradel (gradlew clean build) But I encountered this Error: …

android android-ndk android-gradle-plugin
Android studio, gradle and NDK

I am very new to this whole gradle and Android Studio support. I have managed to convert my android project …

android android-ndk gradle android-studio
How to copy and edit files in Android shell?

The Android shell does not have the cp command. Android shell also has no sed or grep or vi. I …

android linux shell android-ndk sh
Running Node.Js on Android

So I know this has been questioned quite a lot. To be exact for example in these questions: Run NodeJs …

android node.js cordova android-ndk jxcore
[INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113]

I have an issue with third party libraries that are imported to my project. I read quite a lot of …

android android-ndk
System.loadLibrary(...) couldn't find native library in my case

I want to use a existing native library from another Android project, so I just copied the NDK built library (…

android android-ndk
Where do I find old versions of Android NDK?

Does anyone know where I can find older versions of the Android NDK? Our code doesn't build with r6. Surely …

android-ndk android-ndk-r5 android-ndk-r4
What causes signal 'SIGILL'?

I'm porting some C++ code to Android using NDK and GCC. The code basically runs. At one point, when debugging …

android c++ android-ndk porting