Tagged Questions

12
votes
4answers
18k views

File Operations in Android NDK

I am using the Android NDK to make an application primarily in C for performance reasons, but it appears that file operations such as fopen do not work correctly in Android. Whenever I try to use ...
11
votes
3answers
3k views

How to pass C structs back and forth to Java code in JNI?

I've got some C functions which I am calling through JNI which take a pointer to a structure, and some other functions which will allocate/free a pointer to the same type of structure so that it is a ...
9
votes
2answers
2k views

How can I effectively debug C code that's wrapped with JNI in Eclipse? (Android Dev)

I've got a segfault but I have absolutely no idea how to locate it. Tips?
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
4answers
745 views

Android NDK limitations?

I have a question about the limitations of what you can do in native code on the Android platform. Basically I have developed a library in native C code that uses UDP sockets for SIP/RTP and uses ...
6
votes
3answers
227 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
3answers
3k 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, ...
6
votes
1answer
3k views

Producing optimised NDK code for multiple architectures?

I have some C code for Android that does lots of low-level number crunching. I'd like to know what settings I should use (e.g. for my Android.mk and Application.mk) files so that the code produced ...
5
votes
3answers
529 views

How do I load my own Java class in C on Android?

I am trying to call some Java code that I wrote from C using the Android NDK. The application is a NativeActivity application. I have to access some functionality that is only available in Java, and ...
5
votes
3answers
436 views

Is it justified to use C/C++ for iOS/Android cross platform code in this case?

I am planning to write a mobile application (iOS and Android) where there is a lot of image recognition processing. Is it a good solution to write the image recognition code in C or C++ to reuse it ...
5
votes
3answers
1k views

Sending int[]s between Java and C

I have some image processing Java code in Android that acts upon two large int arrays. Most of the time, Java is fast enough but I need to use C via JNI and the NDK to speed up a few operations. The ...
4
votes
2answers
184 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
986 views

What is the Log API to call from an Android JNI program?

I would like to debug a JNI C application by inserting log messages to logcat. What is the C API that does this?
4
votes
1answer
441 views

Using a memory mapped file as a swap file?

I'm working in Android where memory is limited and there is no swap file like feature. I've read that people have implemented swap file like functionality using memory mapped files in their apps but I ...
4
votes
2answers
542 views

How to determine C code is compiled for Android/NDK or iOS

I am reusing a legacy C library in an iOS app and in an Android app. I want to customize some macro definitions (e.g. for logging). Are there standard defines to check for (using #ifdef) whether the ...
3
votes
4answers
676 views

Android NDK timers

I wrote a piece of code in c to calculate how long a section of the C code was taking, then trying to report it back to the Java code. But the problem is that the timer differential always comes back ...
3
votes
2answers
369 views

How to print/log address of a variable in NDK

I'm not very strong in C, but I'm working with the NDK right now and I need help logging address of a variable in hex. I've been using __android_log_print to print generic log messages, but how do I ...
3
votes
1answer
194 views

Alternative gettext lib in C?

I have an Android NDK project entirely in C. I have a bunch of .po files, and libintl configured currently. Unfortunately, according to a Google dev, it looks like I am SOL expecting to use gettext ...
3
votes
2answers
2k views

Install OpenGL ES and compile code for android

I've just started learning OpenGL ES on android (using this book) and came across an issue of adopting source code from chapter 5 to existing methods of using jni in android (actually, it also ...
3
votes
2answers
690 views

Queue implementation with linked lists in C

Below is the implementation of my queue, which has functionality of enqueueing and dequeing from the Queue. Because of some reason it is crashing with no clues(where it is crashing), as the code is ...
3
votes
1answer
262 views

how to synchronise data with JNI in android

I need to synchronize on a structure, which will be filled in native code(C code) and the same will be read from the Java Code with JNI. I need to synchronize these. Is there any method I should use, ...
3
votes
2answers
1k views

What is crtbegin.o and crtbegin_dynamic.o?

When debugging a link error (undefined reference to _dso_handle) using the Android x86 toolchain, I noticed it's statically linking crtbegin_dynamic.o. What is the purpose of this file? There is ...
2
votes
1answer
189 views

Running C program on Android

I compiled a simple C program for Android via NDK, and ran that on Android. C source: #include <stdio.h> int main () { printf ("Hello world!\n"); } Script for compile C source: ...
2
votes
2answers
88 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
314 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
1answer
125 views

Pass data between 2 native modules (Android NDK)

Here is the structure of my program: - 2 independent modules libA and libB, each one is a single shared library libA.so and libB.so - A java activity creating 2 threads thA and thB, each one of them ...
2
votes
0answers
168 views

Openssl X509_set_pubkey() Crash in Android NDK

I am trying to make the most basic x509 public key cert file possible on Android in C via the NDK. I built libcrypto and libssl (although I am currently only using libcrypto stuff) with the stuff ...
2
votes
1answer
118 views

How do I run my packaged binary in my Android app?

I have an Android app that needs to run a custom binary app I wrote. I already built the binary using ndk and packaged it in the apk under res/raw I did something like this to first run the su ...
2
votes
2answers
345 views

“Connection Reset by Peer” if server calls close() immediately after write()

I have a AF_INET/SOCK_STREAM server written in C running on Android/Linux which looks more ore less like this: ... for (;;) { client = accept(...); read(client, &message, ...
2
votes
1answer
841 views

Compiling C code (netcat) to native Android executable

I'm writing a bash script that uses Netcat to serve framebuffer over network connection, but first I need to compile it to native executable. I even got this script to work on a Ubuntu machine, where ...
2
votes
2answers
771 views

Return a 2D primitive array from C to Java from JNI/NDK

I have found large amounts of documentation on how to generate a 2D primitive array in JNI and returning it to Java. But these pieces of information fail to describe how to pass an already existing 2D ...
2
votes
1answer
621 views

GStreamer on Android

Can anyone give me any tips on getting GStreamer to work on Android. I have never used it before and I would like to use it with FFmpeg (I already have FFmpeg compiled and works fine on Android). I ...
2
votes
1answer
303 views

adjtime() missing from Android bionic libc

I'm trying to compile an ntp client for android using the android build system and running into a problem where adjtime() appears to be missing in bionic libc. How can I add support for adjtime() ...
2
votes
0answers
204 views

C/C++ in Android NDK [closed]

I have a C/C++ game engine made in C for Iphone, but i want to port it on Android OS. Who can help me to do that ? In my project i have Render( where i draw all the scene) and a function Accelerometer ...
2
votes
2answers
1k views

Playing audio with FFMPEG

I have been trying to port FFMPEG (for playing audio) into Android using NDK. I have had some success I could build FFMPEG and link it via NDK. I could call avcodec_decode_audio3() and decode a ...
2
votes
1answer
317 views

Using too much memory in C/NDK?

I've recently found out there is no hard limit to how much memory you can allocate in C/NDK on Android. This is in contrast to Java where the limit is ~24Mb. I'm working on a few apps that could ...
2
votes
3answers
2k views

Any simple or easy way to debug Android NDK code?

I'm looking for a way to easily debug C code in an Android NDK application using Eclipse. I've read ways to debug the app using gdb or something similar but what I want is a way to push messages to ...
2
votes
1answer
401 views

error using bool variable in android ndk

I'm having trouble using bool as a type compiling with ndk-build: bool test = true; error: 48: error: 'bool' undeclared (first use in this function) Any ideas?
2
votes
1answer
196 views

Textview show nothing with jni

I want to show log file by Textview and Textview log file content is called by jni. But Textview nothing show(blank black screen),When give just "hello /n How low",was shown by Textview correct. ...
2
votes
1answer
131 views

how to make c-highlight in eclipse?

I have installed Android NDK and want to make eclipse highlight c-source. How ?
2
votes
2answers
2k views

Java JNI - associating resources allocated in C with java objects?

I want to allocate some memory in C and keep it associated with a java object instance, like this: void configure(JNIEnv *object, jobject obj, ....) { char *buf = new char[1024]; // associated ...
1
vote
1answer
83 views

JNI on Android: How to retrieve a string from Java code?

I read a lot of examples to retrieve a java string in C/C++ code, but it seems that I miss something. this simple code doesn't work.. In ActivityTest (android java code) I've: public static native ...
1
vote
1answer
76 views

list of methods for use with android NativeActivity

Does anyone know where I can find a list of all the native c/c++ methods and functions for use with the android NativeActivity. I cant seem to find a list anywhere on the google/android site and Ive ...
1
vote
3answers
207 views

How to compile and run a C/C++ program on the Android system

Q1) I want to run a simple c program on android emulator.I am using windows xp os on my machine. I have installed sdk, jdk, eclipse for android development and succeeded running android application on ...
1
vote
2answers
207 views

Use C library in Android over NDK

What I want to do: I've found a C library which computes an audio stream's pitch and want to use it in Android. I thought instead of porting it I could also use it with the help of the NDK, right? ...
1
vote
0answers
85 views

How do you allocate a specific area of memory using the 'mmap' command in C? (Android NDK)

What is the proper way to allocate a specific region of memory using 'mmap' in C? I've read /proc/self/maps to determine that the area is available. I've tried the following, but it crashes when ...
1
vote
1answer
511 views

Decoding YUV to RGB in C/C++ with NDK

I'm trying to convert the Android camera feed to a bitmap for image processing. I have some code that converts YUV to RGB in native java which works, however, this process isn't quick enough for real ...
1
vote
0answers
133 views

NDK - C Header File Symbolic Link - Does not compile

I am a total new-bee in NDK-C-Linux(Ubuntu) hive. And i'm totally lost. I'm given an old project, which i'am having trouble even compiling. This does not compile: source.c --header.h ...
1
vote
2answers
89 views

How to rotate image in android using android ndk

i want to rotate bitmap in android . i don't want to use android api but want to use c code for image processing and fast response. can u tell me how to achieve this in c?? Thank you in advance
1
vote
1answer
165 views

_vscprintf equivalent on Android?

_vscprintf is not available on Android. Also vsprintf(NULL, fmt, ap) does not work (produces seg fault), so there seems to be no way of calculating size of buffer required for vsnprintf to succeed? ...

1 2 3