The Android NDK is a companion tool to the Android SDK that lets you build performance-critical portions of your apps in native code. It provides headers and libraries that allow you to build activities, handle user input, use hardware sensors, access application resources, and more, when ...

learn more… | top users | synonyms (1)

0
votes
1answer
14 views

Android NDK and its library

Inside the Android NDK, if want to include the Android SDK lib of #include <android/log.h> I would do the following inside the Android.mk build file LOCAL_LDLIBS := -llog The ...
0
votes
0answers
10 views

Using multiple modules in Android NDK

I having trouble setting up my Android NDK based project with multiple modules which depend on each other. What I would like to accomplish: jni Application.mk Android.mk (includes ...
-3
votes
0answers
11 views

Logging several sensors of same type in NDK [closed]

I am developing an Android sensor logging application (inertial sensors, WIFI and camera). As it has to be resource efficient I do most of the job in the native level (NDK). So I want to log all the ...
0
votes
1answer
20 views

Refactor Android NDK make files into modules

I'm having trouble refactoring some make files into manageable modules. Following is the structure I try to accomplish: jni/Android.mk jni/Application.mk jni/libobj/Android.mk jni/libpng/Android.mk ...
0
votes
0answers
9 views

How to solve Adreno200-EGL error?

When using NDK, I got some problems.These problems occurs in Adreno200 GPU. Error opening frame buffer errno=13 (Permission denied) Adreno200-EGLSUB : updater_create_surface_state failed to open ...
0
votes
1answer
30 views

Apk file not getting generated

I have been fooling around with the ndk for android and setup a project follow the instructions in this link http://tools.android.com/recent/usingthendkplugin and when clean/build or run the project i ...
0
votes
1answer
16 views

NDK HelloWorld project : How to create .h files using javah

I am trying to create a helloWorld app which will print a log.. i tried compiling the project using ndk created .so file in libs folder Problem: - i dont know how to create machine generated ...
0
votes
1answer
15 views

Android NDK __android_log_print function andLogCat

I have a function like __android_log_print(ANDROID_LOG_INFO, "HelloNDK!"); on my C code I wouldn't find that output on my LogCat. What kind of filter I need to setup by Log Tag, by Log Message, ...
0
votes
0answers
27 views

Bluetooth discovery with Android NDK

I'm trying the following: sockfd = socket(AF_INET, SOCK_DGRAM, 0); if (sockfd < 0) { goto gotError; } lastlen = 0; len = 100 * sizeof(struct ifreq); /* initial buffer size guess */ for ( ; ...
0
votes
1answer
21 views

Reading and wrinting mifare cards in android devices

Is it possible to access the nfc functions on android devices from native code? I was thinking that I could use native code to read and write mifare cards, this would add more security because it is ...
0
votes
0answers
3 views

support of dlopen flag RTLD_GLOBAL

I load a shared object mylib.so containing a function named foo1 using void* pHandleLocal = dlopen( "mylib.so", RTLD_LAZY | RTLD_GLOBAL ); I try to look up for the symbol void* pSymbol = dlsym( ...
0
votes
0answers
21 views

Error in building boost library for Android framework on Linux

I am facing a problem while building boost library from latest version 1.53.0. While following all steps as described in most of the tutorials for building boost library on Linux system for Android ...
0
votes
0answers
24 views

Android NDK - Debugging a random crash with a bad callstack

My android native application crashes randomly but frequently, and I am unable to get sufficient info out ndk-gdb. This is the message following the crash: Program received signal SIGSEGV, ...
1
vote
0answers
21 views

Profiling android-ndk plain C/C++ executable

What is the best way to profile plain C/C++ android executables on a rooted android device? android-ndk-profiler seems to support only ndk libraries linked to Java. Any suggestions? Thanks
0
votes
0answers
14 views

Android | fatal error: GLES/gl.h: No such file or directory

Android.mk LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE := test LOCAL_CFLAGS := -Wall LOCAL_SRC_FILES := test.c LOCAL_LDLIBS := -llog -landroid -lEGL -lGLESv1_CM ...
0
votes
0answers
27 views

Android NDK r8 gives external mouse button events wrong

I'm using Android NDK r8 and a native activity. I've deployed my solution to an MK-808 Android device that is running Android 4.1.1 I'm having problems with the external mouse giving mouse events ...
0
votes
1answer
25 views

Android Device Lock with out LED(Screen) light off…?

I have a requirement like that. Requirement -: When user press Power button then device should be lock BUT LED(SCREEN) LIGHT SHOULD NOT TURN OFF. I am able to lock the device by coding but when ...
2
votes
1answer
65 views

Do C++ objects in Android JNI native code invoke garbage collection?

So, I've got a conceptual question. I've been working with JNI on Android for the purposes of doing low-level audio "stuff." I've done plenty of audio coding in C/C++, so I figured that this would ...
0
votes
1answer
32 views

Benchmarking Native Android Apps

I wish to perform some benchmarking on a native android app I'm currently working with. I've managed to print some desired data to logcat in eclipse but I am looking for a good way of 1) running the ...
0
votes
0answers
6 views

Compile OpenSSL FIPS for Android armv6

I have seen several answers for how to compile OpenSSL for Android, and the FIPS module for Android armv7 (which I followed), but I have yet to figure out how to make the FIPS module for armv6 on ...
1
vote
1answer
32 views

APP_STL := gnustl_static is broken in Android NDK 8c through 8e

This works okay with 8b but with 8c onwards I get: rm -f ./libs/armeabi/lib*.so ./libs/armeabi-v7a/lib*.so ./libs/mips/lib*.so ./libs/x86/lib*.so rm -f ./libs/armeabi/gdbserver ...
3
votes
0answers
84 views

What is the Eclipse equivalent of Visual Studio's build configurations?

I'm porting some Windows code to Android. The Visual Studio project has various different build configurations for different versions of the application, (e.g. full version vs. demo). What is the ...
2
votes
1answer
191 views

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 to gradle using the export option. But I am looking for some documentation or start point ...
0
votes
0answers
23 views

Wrong orientation of JavaCameraView

I have developed an Android app that, using opencv libraries, opens a video stream and captures frames from it. The problem is that the orientation of the application is portrait, and this allows me ...
0
votes
0answers
16 views

undefined reference to 'memset' while configuring ffmpeg

I want to port ffmpeg on android to use it in an app (to convert video files in webm format). I use the following command to configure FFMPEG : ./configure --target-os=linux \ ...
0
votes
1answer
17 views

Mount directory in/from android device

Is there a way to mount a directory from the host machine (windows) on an android device/emulator, or vice-versa, assuming it is plugged in via usb?
1
vote
2answers
25 views

JNI not found my other activityy

i have a application on java + c++. IDE is - visual studio with android plugin. i have 2 activity : 1-nativeActivity , 2- activity on java. activity on java is main. after java activity i start ...
0
votes
1answer
30 views

Is it possible to access View object created in Java, through Native code?

Is it possible to access View object created in Java, through Native code? I want create some layout with controls (Buttons, Text view, etc.) using Java. And after draw in some region of this layout ...
0
votes
0answers
21 views

Callback Implementation design guidelines (c++ ->Java->c++)

I am writing game where I need to make some network calls. Call Network request from c++ to Java Execute network request in background Asynctask send back response to native c++ class Any good ...
2
votes
0answers
60 views

Adding native support prevents my library to build correctly

This is a quite long story, but I'd really appreciate any help on this. I am building an Android application using eclipse under windows. The application consists in one application (lets call it ...
0
votes
1answer
16 views

GMP compile error: No rule to make target `mpn/add_n.lo', needed by `libgmp.la'

I am compiling the VLC for Android on Ubuntu 12.04, basing on this instruction Always get this error when compiling the libgmp ibstdc++/4.7/include ...
0
votes
0answers
37 views

NativeCameraView and heap-memory-corruption error

Good morning to all. I am trying to develop an Android app that can use native camera, through OpenCV, to record a video in order to capture frames to process them with image processing techniques. ...
1
vote
1answer
50 views

C: Passing floating point to function

Given the following... void test(){ float a = 0.7f; LOGD("Width %.1f",0.7f); LOGD("Width %.1f",a); fark(a); } void fark(float test){ LOGD("Width %.1f",test); } this outputs.... 05-18 ...
1
vote
1answer
13 views

Missing library for glShaderModel in my native C++ Android program

I am not certain what library I need to add for this error: ../arm-linux-androideabi/bin/ld.exe: ./obj/local/armeabi/objs/PhysicsLessons/PhysicsLessons.o: in function engine_handle_cmd(android_app*, ...
0
votes
2answers
40 views

How to call a Java function via JNI from a signal handler function in Android

My objective is to send a signal from kernel to a Android service running in the userspace.On receiving this signal, the service should make an IOCTL call back to the kernel. After it gets data from ...
0
votes
0answers
30 views

NativeCameraView in OpenCV4Android not working

Good morning to all. I have tried to create a simple application for Android that uses opencv4android. This app simply should access through opencv to camera, and captures frames. I have followed this ...
0
votes
0answers
46 views

error video capturing android app

I have created this Android App: MainActivity.java: package com.example.provavideocapture; import android.os.Bundle; import android.app.Activity; public class MainActivity extends Activity { ...
0
votes
0answers
27 views

How can I compile the swiften XMPP library for usage with Android?

I tried to compile swiften (a XMPP client library) into a lib for Android JNI but failed. Is there anyone successed? Any suggestion would be appreciated. I compiled swiften as follow steps: ...
0
votes
0answers
72 views

Tutorial 2 OpenCV for Android not working

I have tried to create an Android App that use openCV camera, similar to the tutorial project of openCV 2.4.0 named tutorial-2-opencvcamera. I have this error in the logcat and I am not able to fix ...
0
votes
1answer
43 views

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, is Webkit/Chromium. We are looking for something similar to WebView, essentially, but ...
0
votes
1answer
60 views

Android OpenCV Running Samples in Eclipse

I can't get Android OpenCV samples to run within Eclipse. I have ADT, CDT, OpenCV, and NDK installed. My Eclipse version is Juno. I converted the samples to C/C++ projects within Eclipse, so I got ...
3
votes
2answers
45 views

Prebuild of static library failed

I try to set up an Android NDK build based on CMake scripts, which dynamically create the required Android make files. While I can't use the JNI folder structure I split the build process in several ...
0
votes
1answer
33 views

Linking libcutils to native executable [duplicate]

I want my executable to be able to call functions supported by libcuils - like property_get(...). In the Android.mk I have: LOCAL_LDLIBS:=-lcutils ndk-build returns: undefined reference to ...
0
votes
1answer
24 views

Android SREC_JNI compilation error

I am trying to compile SREC_JNI code in Eclipse (Windows 7), I got the code from here https://github.com/arthurv/srec I am getting the following error C:\android-ndk-r8c\ndk-build.cmd all ...
0
votes
1answer
49 views

Android NDK using static Library -> function has not been declared

I'm testing the integrated static libraries in an Android app. Unfortunately the compilation does not work! can you help me here? I always get the error: jni/main-jni.cpp: In function 'jint ...
0
votes
1answer
31 views

How to install NDK in Fedora?

I want to install and configure NDK in my System which is having Linux operating system. I have study this link about NDK. http://developer.android.com/tools/sdk/ndk/index.html, from which i have got ...
2
votes
1answer
39 views

Compiling code with OpenCV dependency Android NDK

I am trying to compile C++ code dependent on OpenCV on the Android NDK. I have looked into several answers (mainly this) but apparently the NDK still cannot see the directory I'm giving it in the ...
0
votes
0answers
25 views

How to build static zeromq under ndk for android?

I try to build zmq for android follow http://www.zeromq.org/build:android but it do not work, link error for some reason i do not know. I google it a lot and I find no way to make it right. so I ...
0
votes
2answers
40 views

Android cross compiling C with no configure file

I've recently started to cross compile a couple of C applications for Android. I've successfully done this for image conversion software using the following pseudo-instructions: Build the Android ...
0
votes
1answer
34 views

NDK: how to build a lib, so that app can work on arm(s), x86, etc.?

I never used c++ for android and NDK before. When I use it for - say - image processing I want to be sure app will work on all devices with android 2.2 and higher. When I write for iPhone, xcode ...

1 2 3 4 5 82