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 ...
0
votes
2answers
17 views
why i can not find any symbols in libs/armeabi/libtest.so
When I use ndk, I can not find symbols in shared_libraries.
Android.mk :
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := test
LOCAL_SRC_FILES := test.cpp
include ...
1
vote
2answers
31 views
Android Native Code Debugging
How can I get the cout output of the native c++ program on the log-cat in android application development in eclipse.
Please someone help me here.
0
votes
1answer
19 views
Android: obtain computation time in NDK
I need to obtain the computation time of some parts of an algorithm I have implemented in C with NDK/JNI.
I've read this question: Android Get Current timestamp?
I think I can obtain the computation ...
0
votes
2answers
16 views
NDK: How to include Prebuilt Shared Library Regardless of Architecture
I am working on porting Box2D to learn a little more about android porting.
I can get the project compiling and I see the following....
ls libs/
armeabi armeabi-v7a
Now I want to do ...
0
votes
1answer
13 views
Linking cross-platform library to native android application
The problem:
I have a native Android application that is compiled for x86 and arm, armv7a.
The app also links to a pre-shared library.
That pre-shared library is also compiled for x86, arm, and ...
1
vote
0answers
26 views
Conflict with libraries : findLibrary returned null
Here is the thing
I have a library called rtmpdump with a main function which basically load a C code with
System.loadLibrary("dump");
(dump is the folder)
and have a function which call the C ...
0
votes
0answers
21 views
Debugging native (c/c++) code in Android with DS-5
I'm trying to debug an Android project that has native code with the ARM development studio but I can't make it to work.
I tried all kind of tutorials and other online help I could find but when I ...
0
votes
0answers
20 views
Building Android Project with ndk and using opencv
I am trying to build an application using OpenCv and C++ program and android-ndk to compile the native code in eclipse.
While building the project It is showing that it is not able to find the opencv ...
5
votes
1answer
58 views
Android NDK R8E missing stdlib.h
I'm testing some native library code with the Android NDK (android-ndk-r8e). The native library is being built from its makefile rather than Android's modified build system. Using the makefile rather ...
0
votes
0answers
11 views
Running native adobe XMP on android device
I am trying to port XMP toolkit over to android device. I was able to build xmpcore successfully, and have a libXMPCore.so. When I try to make libXMPFile.so using ndk-build, I am running couple of ...
0
votes
1answer
13 views
Setting up JNI project for the first time — is NDK required if I have NDT installed?
I'm starting a project where I will need to use JNI to allow Android to access embedded hardware peripherals.
I have Eclipse Juno installed and configured with the ADT and NDT. I have imported an ...
2
votes
1answer
29 views
Android - see the arm version dynamically?
At run time I need to determine what arm version my app is running on so I can now what ffmpeg compiled module to include.
The only solution I found until now is to get the device model and ...
0
votes
1answer
28 views
Limit an android app only to armv7 devices
I am now developing a game which runs fine on the ARM v7 devices, but there are problems with the ARM v6 devices. Is there a way to limit the game only for ARM v7 devices?
1
vote
0answers
27 views
android native logging, which header to use?
I see there's two different logging API for native applications
one is defined in <utils/Log.h> and the other in <android/log.h>
the <android/log.h> exports the following api
int ...
1
vote
1answer
26 views
Android NDK: Library doesn't build
I am a newbie to NDK Build system, although I know GNU Make quite well.
I am trying to define build system for my project with one Library and a test stub for testing the library.
I have the ...
0
votes
1answer
27 views
distinguish between NDK build and Android build
I have a native library I build that needs to be build in the Android build, but can also be built using the NDK.
How can I distinguish using the preprocessor between NDK build and Android build.
...
1
vote
1answer
55 views
Latest C++11 features with Android NDK
I am trying to use C++11 threading facilities with Android NDK, but not sure how to make it use the latest compilers.
I have Clang 3.2 and can build iOS apps. I wonder if there is a way to do it with ...
0
votes
0answers
10 views
how to use soundtouch library in android
I had gone through the SoundTouch library i.e. SoundTouch and build it as mention here. But I am not getting is how to use this compiled library in my android project.So, anybody having any idea or ...
0
votes
0answers
15 views
NDK debug error for windowsx86
OS: Windows8 x64
Eclipse: ADT bundle form http://developer.android.com/sdk/index.html
NDK: NDK8e for Windows 64 from http://developer.android.com/sdk/index.html.
I set Windows/Preference/Android/NDK ...
0
votes
1answer
17 views
Android/NDK SIGILL error in only some devices
Under Android/NDK, I am using the next algorithm to convert from RGB to YUV420sp. I started to have a small amount of crash reports from some users. So after they sent me the logs, all seemed to fail ...
0
votes
1answer
14 views
For NDK How do I target older devices [duplicate]
I'm just getting started working with NDK and I finally got things building.
I've got a simple hello world c app that I based in no small part on a youtube walk through.
When I got around to running ...
1
vote
0answers
25 views
on-numeric second argument to 'wordlist'
I'm building a c project in Eclipse-android and get the following error:
This is a ndk build error (independent to my code)
/Users/eladb/MyWorkspace/android-ndk-r8e/build/gmsl/__gmsl:512: *** ...
0
votes
0answers
18 views
Setting library search paths for the the android NDK (cstdlib, iostream, etc not found)
I'm compiling a library with the Android NDK, but for some reason ndk-build is not able to find the usual default gcc libraries (like cstdlib, iostream, etc). I went ahead and tried APP_STL := ...
0
votes
0answers
18 views
cocos2d-x android develoement - ./build_native.sh giving error in windows 7
I am not able to get rid of this error when I start compiling helloCpp with ndk. I am given proper permission to all users. Please can any one give clue? I included NDK_ROOT also in system variables.
...
0
votes
1answer
48 views
JNI Android - Converting char* to byte array and return it to java
I initially used a function to return a char* to java as UTF-8 string, but since I kept getting errors, I wrote the following function to return a char* as a Java byte[], so that I could try to ...
1
vote
1answer
19 views
android ndk java.lang.UnsatisfiedLinkError
I'm trying to get an android app running. It should contain can-android communication.
my project is called CANAndroid. the path is com.example.canandroid .
That for i'm currently using this java ...
0
votes
0answers
9 views
NDK error: undefined reference with android.mk
i m trying to use a library from https://ccrma.stanford.edu/software/stk/ in my native code
and during a compilation i got error: undefined reference (bad link of my extern library)
what s wrong with ...
0
votes
1answer
31 views
pthread_barrier_t on Android NDK
I'm trying to parallelize an algorithm in C on Android NDK with pthreads.
Up to now everything worked quite good. To optimize my code, i tried to use pthread_barrier_t.
But when i try to compile it ...
0
votes
1answer
32 views
where to use Android Native development Kit(NDK)? [closed]
As a beginner i want a clear cut understanding of Android NDK, what is it and where i have to use it? I Need expert advice for this please help me. I jumped to the Android Graphics Programming and i ...
0
votes
1answer
90 views
Android Studio Gradle with native libs error
Sorry for my english...
I have last android studio (14 june 2013).
Create new Android project.
Add .so files to /libs/armeabi
Edit build.gradle to
buildscript {
repositories {
...
0
votes
1answer
20 views
startNativeTracing to profile a native android Library
I am trying to use the startNativeTracing method from the android Debug class and I can't find the output anywhere.
I'm running my app in the provided emulator from the android ADT bundle, with the ...
0
votes
1answer
31 views
How to find memory usage of my android application written C++ using NDK
I am porting a game written in C++ to Android using NDK. I need to know how much memory it consumes while running. I am looking for programmatically way to find the memory usage of Android application ...
1
vote
1answer
43 views
+50
A chat client using the Android NDK in c++
I need to connect multiple android devices through a chat client using the NDK in c++. I did the communication through the SDK in Java for a client and server but need assistance to connect through ...
1
vote
1answer
19 views
The file does not exist for the external tool named SWIG
I am trying to build an application using Android NDK. I have followed all the steps and everything works fine and the .so file is being made. But in eclipse when I try to clean the project I get the ...
0
votes
1answer
29 views
How to set up Automatic NDK Builds in Eclipse windows?
I am setting up ndk environment for android while am doing it . It gives error like following please help me. thanks.
Errors occurred during the build.
Errors running builder 'Integrated External ...
0
votes
1answer
38 views
Accurate POSIX thread timing using NDK
I'm writing a simple NDK OpenSL ES audio app that records the users touches on a virtual piano keyboard and then plays them back forever over a set loop. After much experimenting and reading, I've ...
0
votes
0answers
20 views
Can not find <boost/algorithm/string.hpp> in windows
I'm using windows 7 and I'm trying to ndk-build a android library. I build the boost. But, when I try ndk-build. It shows me error that
In file included from jni/bypass.cpp:1:0:
...
1
vote
0answers
17 views
Windows 8 x64 & NDK r8e & C++ breakpoint in Eclipse, is it possible?
Is it possible to setup Android NDK development environment on Windows 8 x64, and supports break point in C++ code?
If yes, is there a guide?
Thanks.
0
votes
0answers
31 views
android ANativeWindow_lock api doesn't work for GLSurfaceView
I'm finding methods to get drawing buffers very quickly from Android GLSurfaceView.
eventhough I know glreadpixel can do this job, glreadpixel is too slow to get drawing buffer.
I want to read ...
0
votes
0answers
13 views
Reduce background voice while recording by OpenSL Android
In the Android NDK, the Native audio sample is having a feature of recording the sound and playing it back with the help of OpenSL. But while playing, it also contains a lot of background voice which ...
0
votes
0answers
12 views
Communicate from Framework to HAL
Is there any way I can send a message (just a boolean value) from a framework class (particularly WindowOrientationListner) to a HAL implemented in C++?
2
votes
0answers
32 views
What are the tools to debug native code in Android
I've made some changes to the csipsimple app for android, and I want to debug its native code. I'm using the ADT bundle v21.1 to develop (eclipse 3.7, cdt 8.1) under Ubuntu 12.10.
I came across this ...
2
votes
1answer
28 views
Get architecture type (ABI) to C preprocessor for Android NDK
I'm trying to control my C code in an Android NDK project depending on the selected ABI library.
As a start, I want the NDK library method to answer, with a string, what ABI that is used. I did a few ...
0
votes
1answer
93 views
Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1), thread 6049 (WebViewCoreThre)
I' using readium sdk to show epub books.
First loading - ok, but after reinit I get the following error:
06-12 14:57:53.563: A/libc(6020): Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1), thread ...
0
votes
1answer
30 views
FFmpeg 0.8 - Compile library to convert mp2 to mp4
Basically, I have a very specific use-case. I need to convert mp2 video into mp4.
Input Video:
Codec: MPEG-1/2 Video (mpgv)
Resolution: 720x576
Frame rate: 50
Decoded format: Planar 4:2:0 YUV
...
0
votes
0answers
26 views
How to recognize binary image object surrounded like border in color image in android
How to recognize binary border in android using camera? There are 10 different borders and each border can contain any color image. Using camera i need to recognize the borders .
What approaches are ...
1
vote
1answer
43 views
JNI library for Android [closed]
I would like to know if it is possible to build a dynamic library (.so) using JNI/NDK for Android without an Android project and Eclipse...
If yes do you know some tutorial or step that I have to ...
0
votes
1answer
38 views
Indoor position tracking using phone sensors [closed]
My project requires indoor position tracking. WiFi doesn't seem to work as I am required to use only one static AP. Is there any other way for indoor position tracking? I tried with RFID and ...
0
votes
0answers
25 views
lib/gdbserver Error:Permission denied
I'm trying to debug my android application in Eclipse/ADT by selecting:
Debug As->Android Native Application
However, after building I get:
gdbserver output:
run-as: exec failed for lib/gdbserver ...
0
votes
1answer
45 views
ndk8e debug error “Unable to detect application ABI's”
My Enviroment:
Windows8 x64
ATD Eclipse Bundle x64
Ndk8e x64
I imported the hellojni sample in ndk samples to eclipse. And set the SDK path and NDK path in eclipse correctly. And do "Android Toos/Add ...





