Tagged Questions

25
votes
3answers
3k views

Create an android RFCOMM socket without any input from the user. How?

Here s the scenario. I need to write an application for android to create a RFCOMM socket to a pc with a BT dongle (I'm going to write the server too). My requirement is that the user doesn't have ...
18
votes
4answers
12k views

How can I catch SIGSEGV (segmentation fault) and get a stack trace under JNI on Android?

I'm moving a project to the new Android Native Development Kit (i.e. JNI) and I'd like to catch SIGSEGV, should it occur (possibly also SIGILL, SIGABRT, SIGFPE) in order to present a nice crash ...
13
votes
4answers
286 views

Catching exceptions thrown from native code running on Android

The project I'm currently working on requires me to code up the android portion of a cross platform program implementation. A core set of functionality is built and included in my app through ...
11
votes
1answer
551 views

FFmpeg sample code for creating a video file from still images JNI Android

How i modify the following FFMPEG sample code for creating a video file from still images that i am having in my android phone. I am using JNI for invoking ffmpeg. JNIEXPORT void JNICALL ...
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 ...
10
votes
4answers
17k 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 ...
9
votes
1answer
98 views

What are the consequences if we try to attach a Native Thread permanently to the DVM (JVM)?

Is it feasible to attach a native thread permanently to the JVM (AttachCurrentThread) (or) is it better to attach when ever required (calling java functions) and detach immediately once the work is ...
9
votes
0answers
141 views

ndk-stack not working

I am invoking ndk-stack as follows: cat file_temp | ~/workspace/android-ndk-r6b/ndk-stack -sym /home/xyz/trunk/apk/obj/local/armeabi/ It finds the crash fingerprint but fails to show me the stack ...
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
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
6k views

undefined reference to `__android_log_print'

What is wrong with my make file? Android.mk LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE := foo LOCAL_SRC_FILES := foo.c LOCAL_EXPORT_LDLIBS := -llog include ...
6
votes
1answer
2k 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
4answers
398 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
2answers
256 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
4answers
361 views

Unconventional and dodgy Android crash in during JNI/OpenGL ES loading code

Bounty Since this is an important problem to me I've stuck a bounty on. I'm not looking for the exact answer -- whatever answer leads me to fix this problem gets the bounty. Please make sure you've ...
5
votes
3answers
426 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
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
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 ...
5
votes
4answers
5k views

How to Use Eclipse to Debug JNI code (Java & C/C++)

While I can debug my application with the Eclipse JDT debugger for Java code and GDB for C code, I would prefer to use a single tool for all my debugging. I found several projects that enable ...
4
votes
2answers
159 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
422 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
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
3k views

How do I handle calls to AudioTrack from jni without crashing?

I was trying to write to an AudioTrack from a jni callback, and I get a signal 7 (SIGBUS), fault addr 00000000. I have looked at the Wolf3D example for odroid and they seem to use a ...
4
votes
2answers
429 views

Blocking Dialog from within JNI code

I'm writing an app that's basically a wrapper around a 250K JNI. The JNI (a game engine) has APIs like handle_penUp(int x, int y). Sometimes it needs to query the user from inside handle_penUp() ...
3
votes
2answers
30 views

What share of Android devices benefits from Libjpeg-turbo optimisations?

The libjpeg-turbo project "uses SIMD instructions (MMX, SSE2, NEON) to accelerate baseline JPEG compression and decompression on x86, x86-64, and ARM systems". What sort of share of the Android ...
3
votes
1answer
90 views

Android: Most efficient way to pass some read-only bytes to native C++

I have an Android project (targeting Android 1.6 and up) which includes native code written in C/C++, accessed via NDK. I'm wondering what the most efficient way is to pass an array of bytes from Java ...
3
votes
1answer
166 views

Build Android-openssl library for platform 2.1

I am using open-ssl source given at https://github.com/eighthave/openssl-android to build a library which can be used in android project. As per instructions given at README.txt, I am able to ...
3
votes
4answers
556 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
188 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
254 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
1answer
641 views

Android NDK import-module / code reuse

Morning! I've created a small NDK project which allows dynamic serialisation of objects between Java and C++ through JNI. The logic works like this: Bean -> JavaCInterface.Java -> JavaCInterface.cpp ...
3
votes
2answers
855 views

Convert JNI types to Native types

While there is documentation regarding turning a jstring to a native string (string nativeString = env->GetStringUTFChars(jStringVariable, NULL);) I can't find an example which will convert a ...
3
votes
1answer
478 views

JNI Warnig expected return type 'L' calling LocationManager.requestLocationUpdates

I am using Necessitas (QT in Android). Basically, using the Andrid NDK an android activity calls a QT application (.so). I am working on some bindings for the GPS. I think I am getting there, however ...
3
votes
1answer
1k views

How to Find memory leaks from native code in android

Just wondering if someone knows how to find out memory leaks in native code from android. Google search gives lot of solution, but none of them is full. Please let me know if anybody knows how to do ...
3
votes
1answer
251 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
4answers
671 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
2answers
2k views

Linking thirdparty libs (libs.a) with NDK

I'm building an Android apk who uses some native libraries of a third party, these libs are in Static Object Code Library (.a files) and I need to write a JNI wrapper to access in Java these ...
3
votes
2answers
355 views

What is the correct way to write native method signatures in Android NDK?

I have a working implementation of NDK library and corresponding Java-class. But I am not able to add overloaded method to that class. Currently my class contains: package com.package; public class ...
3
votes
2answers
828 views

Android NDK: How to clean up native code after restarting activity?

All, I'm aware that by default an activity will be killed and restarted when the screen orientation changes, or a keyboard is slid in or out. (See ...
3
votes
1answer
1k views

How to Create C header file using Javah tool

Hi guys i am using android ndk and for that i am trying to create a c header file using javah tool how to use and where to use this tool i am unable to understand so please any one can tell me the ...
3
votes
2answers
5k views

OpenCV NDK Android help

I am assuming that using the OpenCV code here: http://github.com/billmccord/OpenCV-Android#readme is the best way to use OpenCV on Android, with the NDK. I am still stuck as to how i get from the ...
2
votes
1answer
125 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
170 views

Android NDK can't find JNI_GetCreatedJavaVMs after update from r6 to r7

I've updated my NDK version from r6 to r7. After that I get this error when compiling one of my native files: error: 'JNI_GetCreatedJavaVMs' was not declared in this scope I am building my ...
2
votes
1answer
178 views

Best way to build complex native + java libraries with Android SDK+NDK

I am building a multi-platform SDK for real time 3D applications. This SDK is programmed in C++ and works under Windows, Apple's iOs, MacOS, Linux and Android. The project structure is complex, it ...
2
votes
1answer
480 views

android - javah doesn't find my class

I am having troubles generating the C header file for JNI using javah. Here's the script I use while standing in the <project-dir>\bin directory: javah -classpath ...
2
votes
2answers
406 views

How to create an object with JNI?

At first I'd like to say I'm totally new to Android SDK, NDK and let's say I'm new to Java as a whole. However, I need to implement some functions into an Android application using NDK and thus JNI. ...
2
votes
1answer
274 views

Call a static java method of another package from native code

For example, let say that in Android, I need to call the static method android.os.SystemClock.elapsedRealtime(), which returns a long, from a portion of native code. In the mylib.c file, I have ...
2
votes
1answer
225 views

NDK, JNI and libcurl

I've taken over a project and am having a hard time implementing the SSL side of things. Our application makes use of libcurl to access remote content from a server. The device is looking for a ...
2
votes
1answer
290 views

Problem with AudioTrack

Hello I wrote a program (on Android NDK), which gives audio buffer through JNI in Java. The problem of instability. Sometimes AudioTrack perfectly reproduces the buffer, and sometimes there are these ...
2
votes
0answers
158 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 ...

1 2 3 4 5