26
votes
1answer
12k 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 ...
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 ...
25
votes
21answers
6k views

OpenGL ES 2.0 Extensions on Android Devices

As this page for OpenGL ES 1.x, i collect OpenGL ES 2.x Extensions for Android Devices on this page. The list can be found with my benchmark tool gpubench. These informations can help many game ...
19
votes
3answers
5k views

MP3 Decoding on Android

We're implementing a program for Android phones that plays audio streamed from the internet. Here's approximately what we do: Download a custom encrypted format. Decrypt to get chunks of regular ...
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 ...
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 ...
17
votes
1answer
807 views

Integration of android ndk's ndk-gdb with emacs?

Can anyone tell me how to run ndk-gdb from within emacs using gdb-mode? I'm currently running it in a shell buffer. What I'd love to have is a way to automatically sync a source file buffer with the ...
17
votes
5answers
19k views

ffmpeg for a android (using tutorial: “ffmpeg and Android.mk”)

I am trying to compile ffmpeg for a android. I have found several posts on this theme but non of these seems to work. If tried to build ffmpeg like it is posted on [1]. Did anybody successfully ...
15
votes
1answer
1k views

Android application in haskell

Hi i know there are similar questions. But maybe thare are any updates or new libraries in this area. What I'm looking for: Best practices of writing android appplication in Haskell. I know in ...
15
votes
1answer
7k views

Can't include C++ headers like vector in Android NDK

When I try to include any C++ class like vector in my Android NDK project (using NDK r5b, the latest), I get an error like the following... Compile++ thumb : test-libstl <= test-libstl.cpp ...
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 ...
12
votes
3answers
4k views

Nexus One / Android “CPU may be pegged” bug

I'm writing a graphically intense game for the Nexus One, using the NDK (revision 4) and OpenGL ES 2.0. We're really pushing the hardware here, and for the most part it works well, except every once ...
11
votes
1answer
550 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
7answers
402 views

Android Signed APK showing incomplete

I have signed the application using Eclipse's Export Wizard. When I published this, users started complaining that the application is behaving incorrectly. (Basically, the APK did not have necessary ...
11
votes
7answers
4k views

Which Android phone to use for development…?

I'm planning to port a couple of games from iPhone/Windows Mobile to the Android platform. The games are written in C++ so I plan to use the NDK with a thin java wrapper. I'm new to the Android ...
10
votes
1answer
5k views

how to use addr2line in android

I was stuck with my app, as i am unable to debug as it is a multithreaded one and crashes with error SIGSEGV. I get lot of information on logcat, which gives me addresses in my native library. It'll ...
10
votes
2answers
5k views

Android: How to make game asset files readable from c++ code using ndk

I am creating a game using the irrlicht c++ 3D graphics engine port to android platform. The graphics engine is written in c++. I need to be able to load meshes and textures etc from c++ code. My ...
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
139 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
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
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?
9
votes
2answers
13k views

Installing & using the Android NDK in Eclipse

I've been running the Android SDK for a while now in Eclipse (MAC OSX). I've downloaded the NDK and installed the C/C++ tools in Eclipse, but could anyone guide me on using the NDK? For example, do I ...
9
votes
12answers
9k views

Objective-C and Android

I've just finished a relatively large project for the Android, and it's left a bitter taste in my mouth with the knowledge that it will never run on one of the most ubiquitous handsets this side of ...
8
votes
3answers
3k views

Android NDK revision 7 Host 'awk' tool is outdated error

I am getting "Android NDK: Host 'awk' tool is outdated. Please define HOST_AWK to point to Gawk or Nawk !" error on latest android ndk revision 7.
8
votes
3answers
517 views

Android app restarts automatically after a crash

My app is partly written in native app using C/C++. The problem is that whenever C/C++ part crashes for some reason the app dies and then restarts automatically. This causes all kinds of messy ...
8
votes
5answers
713 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
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 ...
7
votes
3answers
4k views

problems with Android NDK-7 and AWK

I am having problems with the latest Android NDK: ligi@ligid:~$ ndk-build /home/ligi/bin/android-ndk/prebuilt/linux-x86/bin/awk: 1: ELF: not found ...
7
votes
1answer
368 views

Can I use glu with Android NDK

I can't seem to include glu.h in my Android NDK project. I'm trying to port existing C++ code to NDK, and it uses glu in a few places (notably gluErrorString). Does OpenGLES not have glu? Is there ...
7
votes
4answers
640 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 ...
7
votes
1answer
360 views

How to tell Android NDK to use a different toolchain

I've downloaded a custom toolchain (linaro) to build ARM based Android apps. How do I tell the NDK to use it? Can I define or set something in Android.mk and Application.mk that would allow me to do ...
7
votes
4answers
807 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 ...
7
votes
1answer
1k views

Maximum size of native heap on Android?

If I have understood correctly, an android process has two heaps - one managed by the VM and one native. The size of the VM heap cannot exceed 16mb (at least, this value can be higher on some ...
7
votes
3answers
2k views

NDK - How to use a generated .so library in another project

I have used ndk successfully to build & use a .so file in one project. I need to use this library in another project. I would rather not copy the source there, but just use the library. Trying to ...
7
votes
1answer
7k views

Android Video Player Using NDK, OpenGL ES, and FFmpeg

Ok so here is what I have so far. I have built FFmpeg on android and am able to use it fine. I have been able to load a video into FFmpeg after passing the chosen filename from the java side. To save ...
7
votes
3answers
3k views

Android NDK with Visual Studio

I'd like to build some native libraries for android using the NDK (native development kit), but i'd like to use Visual Studio 2010 to do it. I've googled quite a bit but haven't found any information ...
7
votes
1answer
2k views

How much is too much memory allocation in NDK?

The NDK download page notes that, "Typical good candidates for the NDK are self-contained, CPU-intensive operations that don't allocate much memory, such as signal processing, physics simulation, and ...
7
votes
10answers
2k views

Is deep Java knowledge needed for Android?

I am C++ developer interested in Android. As I understand the only possibility to develop applications for Android is Java. There is NDK also, but as I can see it is just something like JNI for Java. ...
7
votes
2answers
3k views

Porting a C++ application to android

Is it possible to port a C++ application which uses the STL extensively to Android? I understand that currently the NDK does not support this, but is there any effort (open source or otherwise) ...
7
votes
4answers
5k views

Android OpenAL?

Has anyone built OpenAL for the Android, or found the shared library for it on the system? This seems like an obvious need for a game of any kind, yet there's no resources out there for it. It seems ...
7
votes
2answers
1k views

Android NDK - does it support straight ARM code or just Thumb

All, I have been asked to evaluate the Android platform for our product and I am looking at various options, I am only just scratching the surface just now and the one thing that is bothering me is ...
7
votes
4answers
7k views

Android NDK C++ JNI (no implementation found for native…)

I'm trying to use the NDK with C++ and can't seem to get the method naming convention correct. my native method is as follows: extern "C" { JNIEXPORT void JNICALL ...
6
votes
3answers
171 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
4answers
414 views

Error in android NDK make program cannot find

I am trying to Set up Android NDK using this Link. I started Set up process by following command make -v and i am getting $ make -v bash: make: command not found Then i entered ...
6
votes
2answers
224 views

Android - native sockets not removing 3G-sleep-mode on first attempt

I have a really annoying problem. What happens is I have an application which is using native sockets to send data over TCP. When I first launch my application and send data over the sockets, nothing ...
6
votes
2answers
325 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
1answer
414 views

Android: sound API (deterministic, low latency)

I'm reviewing all kinds of Android sound API and I'd like to know which one I should use. My goal is to get low latency audio or, at least, deterministic behavior regarding delay of playback. We've ...
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 ...
6
votes
3answers
332 views

Android Market multiple APK… How about different CPU architectures?

So I thought I could now upload my app using different NDK compiled libraries for targeted CPU architectures but it seems like that's not possible. Anyone know how to upload to the Android Market ...

1 2 3 4 5 27