The android-ndk-r4 tag has no wiki summary.
26
votes
1answer
13k views
Android NDK r4 san-angeles problem
I'm starting to learn the android NDK and I've instantly come up against a problem.
I'e built the tool chain (which took a LOT longer than I was expecting!!) and I've compiled the C++ code with no ...
6
votes
1answer
458 views
Android NDK incremental build
I'm currently working on a large Android app using a massive amount of C++ code.
It compiles and runs, so far so good.
Unfortunately, every time I modify something in the structure of my native ...
3
votes
1answer
2k views
Getting hardware floating point with android NDK
I've begun playing with the android NDK. One of the things I've just learnt is about creating an application.mk file to specify the armv7 abi.
I'm building the san-angeles example with the ...
1
vote
1answer
509 views
Android GLSurfaceView.Renderer is Interrupting an Incomplete Touch Event
This is a problem I've been having for a while and I'm hoping someone here might be able to shed some light on it.
I have an Android game which loads a GLSurfaceView who's renderer is set up like ...
1
vote
2answers
2k views
Android NDK OpenGL ES 1.0 Simple Rendering
I'm starting out with the Android NDK and OpenGL. I know I'm doing something (probably a few) things wrong here and since I keep getting a black screen when I test I know the rendering isn't being ...
1
vote
2answers
329 views
Android: Performances of Native/JNI code change from one phone to another
Hi all
I'm having an problem with my JNI library.
The execution time of the same code changes from one phone to the other.
I thought it was just because we were testing on an old phone but recently I ...
1
vote
1answer
530 views
Problem with SWIG generated JNI code on Android
I want to generate JNI wrappers from C/C++ code.
Here is my interface file.
/* aes_security.i */
%module jni_security_example
%{
#include "pbkdf2.h"
%}
extern int pbkdf2_sha1 (const char ...
1
vote
2answers
1k views
Android-ndk with eclipse: How to force reinstallation of apk
I'm developing a library in c++ using the android NDK. Actually i created my project in android with both java and c++ sources. I can compile and run my project and all works fine.
Now i would like ...
0
votes
2answers
277 views
where do I find old versions of NDK
Does anyone know where I can find older versions of the Android NDK? Our code doesn't build with r6. Surely there must be archived versions somewhere.
0
votes
1answer
207 views
App using NDK (native code) falls. How can i find out why?
My app is using NDK (4r-crystax in my case) to proccess images from a camera. Problem is, it falls after few minutes of work. I guess there can be some memory leaks or something like that, but i dont ...
0
votes
1answer
1k views
Getting the signal 11 (SIGSEGV), fault addr deadbaad in Android
I am building a C\C++ native application for android, trying to run it on android but I get the following error:
02-14 14:05:40.261: INFO/DEBUG(31): *** *** *** *** *** *** *** *** *** *** *** *** ...
0
votes
1answer
490 views
Problems running 2 sample NDK applications
I have installed the android tool chain within eclipse and am working through all the sample apps under the NDK. The apps all build fine with ndk-build and were imported into eclipse without issue. ...
0
votes
1answer
1k views
android library linking
I don't if what I am trying to do is possible :
I am trying to build the tesseract project (libocr) with the ndk.
Compilation is ok but linking is wrong...
with a lot of error like this :
Android ...
0
votes
1answer
321 views
JNI sources in the APK
I have an Android project with an NDK/JNI library in Eclipse Ganymede. Inexplicably, the bin folder contains a copy of all my C++ sources from the jni folder. So does the APK, if you rename it to ZIP ...