Tagged Questions
0
votes
1answer
277 views
Android: Executing a program on adb shell
I have created an executable using "include $(BUILD_EXECUTABLE)" command in Android.mk .
My requirement is to execute the above generated executable over the abd shell.
I tried:
Below is my C-Code ...
0
votes
1answer
98 views
Suggestions for optimizing a video decoder
I recently ported a video decoder(written in C) to android platform. its output was in YUV format. So i had to convert it to RGB8888 to display it using the ANativeWindow API from the native code. ...
-5
votes
1answer
31 views
Porting Windows Queues/Stack to android
I was thinking to port Queues and stack used in Windows to Android. Is it possible to do the same? Can it be done with the help of Android NDK?
0
votes
1answer
138 views
porting: Android/Linux client/server socket communication issue
I'm porting a Server/Client socket application from Windows to Linux/Android and I can't seem to figure out what the problem is.
Basically, what the Client does is send a string of chars to the ...
2
votes
1answer
188 views
Porting Visual C/C++ to Android, stopover at linux?
I need to port a fairly large Visual C/C++ Project to Android in my recently started internship.
I asked another question about that topic yesterday, asking for some help finding a concept for the ...
1
vote
3answers
724 views
Porting Visual C/C++ to Android
in my resently started internship (i'm studying computer science) i have to port a somehow big existing Project to Android. It is a Visual C/C++ Project which in the end should run on Android using of ...
1
vote
1answer
2k views
porting libcurl on android with ssl support
I am trying to port libCurl to android with SSL support,
step one would be to port the curl without ssl support I guess so I started doing that. but I run into a problem.
as I read on the dev ...
0
votes
2answers
376 views
how to compile an Android NDK lib to a static iOS lib
I have a C++ codebase which is used by our Android project via JNI (build scripts and such are all Android-specific). I need to update our Objective C project with it which is using an older version ...
0
votes
1answer
553 views
Porting a game from Android SDK GLES 1.0 to NDK GLES 2.0?
I'm currently developing an Android game using the SDK GLES10 and I'm experiencing some performace issues with it on not so good phones like the Samsung Galaxy Ace. So I've thought about porting it to ...
0
votes
1answer
109 views
why does argument value change in nested call and lead to segmentation fault
I have Visual Studio project which I am porting to android. I am facing a problem of segmentation fault in function calls which resembles the functions below:
char* format1(const char* fmt, ...) {
...
3
votes
3answers
2k views
What causes signal 'SIGILL'?
I'm porting some C++ code to Android using NDK and GCC. The code basically runs. At one point, when debugging in Eclipse, the call
Dabbler::Android::Factory* pFactory = new Dabbler::Android::Factory;
...
4
votes
2answers
2k views
How to build protocol buffer by Android NDK [closed]
I want to built a native version of Google's protocol buffers library.
How would I do that?
1
vote
1answer
137 views
which compiler to use for porting C++ through ndk?
I've an android app that does dome image proceesing. i'd like to write certain parts of the app in C++ for performance reason, then call these methods through the NDK. do i need a specific C++ ...
4
votes
5answers
13k 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
4answers
1k views
Porting Symbian C++ to Android NDK
I've been given some Symbian C++ code to port over for use with the Android NDK.
The code has lots of Symbian specific code in it and I have very little experience of C++ so its not going very well.
...