Tagged Questions
28
votes
3answers
5k views
How to use the boost library (including shared_ptr) with the Android NDK and STLport
This is more of an answer than a question, because I've figured it out, at least as far as cleanly compiling the library. The main issue for me was to get shared_ptr working.
Ingredients:
Boost v. ...
18
votes
7answers
8k views
uSTL or STLPort for Android?
I'm working with the Android NDK, and since it does not currently support the STL, I was wondering if there are any brilliant people out there who have had success with this, or know which is better ...
9
votes
3answers
1k views
Lisp and Android NDK
Is there a lisp ported to android with the NDK? I've been thinking of writing one in C++, for a project I have going, but I don't want to reinvent the wheel. Has anyone seen such a beast?
I have seen ...
9
votes
1answer
776 views
Memory debugging tools for Android NDK C++ code
Does anyone know of memory debugging tools (like Valgrind) for native C++ code under Android NDK?
8
votes
5answers
708 views
stack traces stop before getting to my code (on Android using NDK)
I'm developing on Android 2.3.x using NDK r5b. Occasionally my code crashes and I'd like to know where. I already know how to get the corresponding line in my application when I have a have a pointer ...
8
votes
1answer
5k views
Calling a java method from c++ in Android
THE SOLUTION TO THIS PROBLEM IS IN THE BOTTOM OF THE QUESTION!
Hi. I'm trying to get a simple java method call from c++ while java calls native method. So, here's the java code:
public class ...
8
votes
2answers
3k views
Get function names from call stack
I am working on an Android program which calls in to native code. That native code is segfaulting, and since getting debugging working through the android NDK is not really doable, I'm left with a ...
7
votes
3answers
195 views
How to optimize size of shared library?
Say we have huge static libraries with lots of unneeded features (in the example below we have libraries lib1.a and lib2.a with unneeded functions g1() and f2()).
We want to build shared library with ...
7
votes
4answers
800 views
Segmentation fault when using dlclose(…) on android platform
I have some problems when using the dynamic loading API (<dlfcn.h>: dlopen(), dlclose(), etc) on Android.
I'm using NDK standalone toolchain (version 8) to compile the applications and ...
6
votes
3answers
169 views
Android NDK - write only in C/C++
Is where a possible way to make a whole NDK app with C/C++ without a Java "starter" class like in hello-jni sample project (HelloJni.java) - somehow create a HelloJni.c which will do the same?
6
votes
2answers
323 views
Android NDK C++ 'wstring' support
I have source code/lib written in C++ - now i would like to compile and use the same in Android NDK project (NDK 6). I am able to compile most of the C++ files except "std::wstring" based ...
6
votes
5answers
282 views
Android programming entirely in C++ - Where to start learning?
I've been interested in learning Android programming for quite some while now. However, I'm just not very fond of Java.
Now I've heard that as of Android 2.3 one is able to write apps entirely in ...
5
votes
4answers
394 views
Updating UI from background thread using native code entirely (no JNI)?
I am writing an Android application that does much of a processing in the background thread. The calculations are performed in the native code using C++. I want to update UI with the partial results ...
5
votes
3answers
206 views
Developing on the Android using the NDK alone?
I have done lots of research trying to find a tutorial that would explain Android development using the NDK r5 or later. All tutorials that I've found use the NDK by invoking functions through the ...
5
votes
2answers
251 views
Creating an android.graphics.Bitmap from C++
I have some NDK based C++ code that needs to build an android bitmap object. I'm sure there is a way to do this directly from the C++ code but its not the easiest of things to do ;)
So the method I ...
5
votes
3answers
2k views
Use C++ with Android ndk/jni
All the ndk samples only make use of basic C functions declared as extern in the header and defined in the cpp file. Then after including the header file in the C file containing the jni callback, ...
5
votes
2answers
486 views
How to run run C++ apps in android?
How to run c++ applications in android using cygwin. Any tutorial in this regard is appreciated..
5
votes
2answers
3k views
Can't include STL header files with Android NDK r5
I've got a very simplistic application:
#include <vector>
void android_main(struct android_app* state)
{
}
When I build it, I get the following error:
test/jni/main.c:14:18: error: ...
5
votes
3answers
847 views
Enable Exception C++
I am trying to make APP native code for Android.
The Native code is in cplusplus.
Whenever I try to make, the following error appears.
H236Plus.cpp:135: error: exception handling disabled, use ...
5
votes
4answers
3k views
Developing Android applications with Visual Studio 2008
I've recently obtained an HTC Desire and I'm interested in porting my 3D engine to the device. I have a slight annoyance however. I'd love to be able to do development under Visual Studio 2008. Am ...
4
votes
2answers
158 views
Get the pointer of a Java ByteBuffer though JNI
How can I get a pointer to the inner array of a Java ByteBuffer?
JNIEXPORT void JNICALL test(JNIEnv *env, jobject thiso) {
jclass cls = env->FindClass("java/nio/ByteBuffer");
jmethodID ...
4
votes
1answer
249 views
Boost C++ and Android 3
I tried to google and SO search. So far I was able to find only conflicting information. If it is too hard to marry Boost and Android, maybe there are replacements? I am especially interested in ...
4
votes
2answers
534 views
Android NDK with C++ Graphics Engine
I would like to use the C++ Graphics Engine (Ogre3D) I am familiar with to write some games for Droid (I just cannot get used to Java) and there are plenty of write ups on how to build the ...
4
votes
2answers
174 views
Removing C-style casts in C++ code under Android
I saw this post on SO: Is there a way of disabling the old c style casts in c++, and was excited to apply -Wold-style-cast to my Android C++ code. I quickly ran into the following casts in stdio.h:
...
4
votes
2answers
306 views
Pthreads dying in the middle of a mutex lock
I was thinking of the following scenario happening while a pthread is running:
pthread_mutex_lock(...);
... // <- Thread dies here
pthread_mutex_unlock(...);
in other words, a pthread starts, at ...
4
votes
1answer
2k views
Using my own prebuilt shared library in an Android NDK project
I came across this post that is almost what I need:
How to compile a static library using the Android NDK?
Basically, there are certain parts in my project that are never updated, so I am trying ...
4
votes
1answer
3k views
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 know this is possible by using NDK and JNI calls. But not able to make it work. No guides online are ...
4
votes
1answer
877 views
Porting an iPhone game to Android - Texures and Buffers
I have programmed my game in C++. I have managed to compile everything using ndk, but I have notice a couple of snags.
How do I load textures into NDK OpenGL(since the code is already there)? I did ...
4
votes
3answers
2k views
Is there a sleep() function for Android NDK?
Under Android NDK, is there a sleep() function which sleeps for X miliseconds, but do not block the event loop?
We are writing API tests to work on Mac, Windows, and Android. So far, we have ...
3
votes
2answers
270 views
Eclipse-CDT fails to find STL symbols in NDK project
I am trying to write a simple Android application using the NDK and C++. Specifically, I'd like to use the gnustdc++ included with the newest version of the NDK (r7). The JNI library has compiled and ...
3
votes
2answers
151 views
When will C++ Destructor for a global variable be called in NDK?
I recently encountered a strange issue while compiling an Android console program using NDK.
The class is declared like this:
class ClassP
{
public:
~ClassP()
int number;
}
ClassP::~ClassP()
...
3
votes
1answer
241 views
Android: please advise a fast way to decode JPEG image
I need to decode (unpack into bitmap) pretty small (about 1200 * 1200) JPEG. The problem is I need to do it quickly. I have tried libjpeg, and it's quite slow. I have also tried ...
3
votes
1answer
230 views
poppler library for Android app (NDK) will be possible instead of xpdf?
I need to create an Android app that shows pdf files and I want to use xpdf or poppler library. This question is only about these 2 choices. I already know how to exploit poppler-qt4 so I'd prefer to ...
3
votes
1answer
642 views
Android / GDB - Headaches - cannot find debug symbols
GDB is starting to give me a headache. There seems to be something weird going on with the way GDB works.
obj/local/armeabi/ contains both a list of all the .so files used in the project which are ...
3
votes
2answers
186 views
Problem in compiling android-ndk code
I am facing an issue and would like to know why this is happening.
I have a project which consists of a Java file and some JNI & C++ code files. I am building JNI and C++ code through cygwin ...
3
votes
2answers
430 views
How are you debugging C++ for Android NDK?
What are the options for debugging native code on Android? Is gdb the only debugger available? Is their a Visual Studio integration?
I've looked through the Android docs and done the googlesing but ...
3
votes
2answers
253 views
Call a java method
I have created my first native call in Java with the Android SDK today.
I found a few examples but there aren't consistent with the function head.
I used always
JNIEXPORT void JNICALL ...
3
votes
4answers
669 views
Android/Java: How to call methods of an object created on a different thread?
In my Android NDK app, the C++ library runs in a different thread than the ui thread. A JNI call from C++ creates an instance of Java class Foo. I'd like to have another Java object Bar, created on ...
3
votes
1answer
1k views
Cell broadcast support on Android?
Does anyone know if there is a support for cell broadcast on Android?
If yes, can anyone point me to any example that shows how to use it? (e.g. receive messages on some channel)
Thank you.
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 ...
3
votes
5answers
6k views
Getting the System tick count with basic C++?
I essentially want to reconstruct the getTickCount() windows function so I can use it in basic C++ without any non standard libraries or even the STL. (So it complies with the libraries supplied with ...
2
votes
0answers
103 views
How do I debug Android native lib in eclipse with ARM DS-5 without going crazy?
I summon the Android NDK debugging Ninjas here!
I've tried so many tutorials about debugging Android native code, so I can't remember them all.
Now I'm trying to get ARM DS-5 work. I've made it work ...
2
votes
1answer
117 views
JNIEXPORT and JNICALL in Android NDK
While working with some sources written in c++ I found those macro:
JNIEXPORT return_type JNICALL function_name(...){
However, android-ndk samples don't use them. I read some docs from oracle, but ...
2
votes
1answer
130 views
using eigen with android ndk
Has anybody successfully imported the eigen library using the ndk? I was thinking about using it to do all the math matrix operations for an app Im working on. I found a few people mentioning it in ...
2
votes
2answers
71 views
How to call a function in CPP file from C File and vice versa in ANDROID NDK?
I am not able to call a function in cpp file from c file and also a function in c file from a cpp file in the ndk itself.
I tried using extern "C" {} as well.
Pasting the code i tried here for ...
2
votes
2answers
245 views
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 there is a crash. The problem is that there is no <execinfo.h> for the ...
2
votes
2answers
206 views
Execute a pure binary file on Android
Is there a way to run a binary executable file (compile with NDK), on Android?
/* #includes #defines ... */
int main(){
// Do something when this is executed
return 0;
}
I want it to run ...
2
votes
1answer
193 views
How do I turn on RTTI with Cygwin?
When my Android NDK C++ native code is compiled, the following error appears:
error: 'dynamic_cast' not permitted with -fno-rtti
Someone told me to turn on RTTI, but I didn't know how to do. Do ...
2
votes
2answers
192 views
can we use flex and c++ on android?
I have created an AIR app on windows which uses flex as front end, and c++ native binaries at back end. The two are loosely coupled, and communicate with the help of flex NativeProcessEvents.
As a ...
2
votes
5answers
128 views
What this error means and how to solve it?
I am trying to build a C++ code using NDK in android. I have a method which has a parameter vector < vector <float> > coordinates
Everything builds fine until I write this ...