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.

Embedded Chromium or Webkit in Android app

For our Android app, we would like to embed our own browser/rendering engine. The most likely candidate for this, …

android webkit android-ndk chromium
How to match int to enum

I am receiving return value in the form of long or int from Native code in Android, which I want …

java android enums android-ndk
NDK - How to use a generated .so library in another project

I have used ndk successfully to build & use a .so file in one project. I need to use this …

android android-ndk java-native-interface
How can I add .so files to an android library project using gradle 0.7+

Project structure: App project --> depends on Library project Library Project has a folder for the compiled jni libs …

android android-ndk android-gradle-plugin
How to find the path to NDK?

I installed NDK using Android Studio (SDK Manager). Where is the default directory of NDK for Mac? How do I …

java android android-ndk
Android Studio CMake Error: Build Command failed

I'm running into an Error when I open a new project in Android Studio from the Code Samples (Hello JIN). …

android android-studio android-ndk cmake android-studio-2.3
How To Get File In Assets From Android NDK

I'm trying to access an image file in the assets folder from the native side. Now I can successfully search …

android android-ndk openscenegraph
How to get ndk-gdb working on Android?

I'm trying to get the NDK debugger working but with no success so far. To make sure my debug symbols …

android android-ndk gdb symbols
Android NDK: getting the backtrace

I'm developing the native application that works with Android via the NDK. I need to call the backtrace() function when …

android c++ c android-ndk
How to use NDK? Starting with 'hello world' app

I would like to see a 'Hello world' program written in C/C++ but made to run on Android. I …

c++ android java-native-interface android-ndk