Tagged Questions
26
votes
1answer
13k 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 ...
19
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
13k 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
834 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
20k 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 ...
16
votes
5answers
4k 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.
16
votes
1answer
8k 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
...
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
...
13
votes
4answers
321 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 ...
13
votes
1answer
270 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 ...
12
votes
1answer
644 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 ...
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
7answers
416 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
2answers
6k 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 ...
11
votes
2answers
15k 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 ...
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 ...
11
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
103 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
3answers
2k 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
3answers
3k 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 ...
9
votes
1answer
6k 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 ...
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
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
2answers
131 views
OpenGL surface view scaling for different DPIs
I have a device with 800x480 res. When I create GLSurfaceView, I get an onSurfaceChanged call with 533x320 (apparently with 1.5 HDPI modifier applied) and surface is upscaled. So when I draw 1 pixel ...
8
votes
2answers
302 views
speex support in android
Can anybody help me on how to use speex or jspeex in android?
I have searched a lot but could not able to find anywhere.There are many issues regarding this in code.google.com/android but none have ...
8
votes
5answers
5k 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
...
8
votes
1answer
502 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 ...
8
votes
3answers
575 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
794 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
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 ...
8
votes
2answers
7k 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
1answer
227 views
Galaxy Nexus - wrong CPU ABI being selected during install time
In my product I'm finding that when I install the APK file onto the Galaxy Nexus running android 4.0.1 the incorrect .so file is being installed. I have a so-called "fat" APK that includes native ...
7
votes
3answers
463 views
MuPdf Reader integrate in project
I am working on some stuff which able to read the pdf in my application and i want to put pdf view is in my custom layout .i had preferred
Android PDF Viewer but when i performed zoomIn , zoomOut ...
7
votes
4answers
744 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
429 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
871 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
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
6k 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
2answers
192 views
Fractal Applications on Android
What is the best way to generate fractal curves on android?
Should I use NDK?
and if not
What is the right class to extend View or SurfaceView
I've generated two fractals extending View ...
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
4answers
613 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 ...