our application is having problems working with default sqlite version provided in Android 2.1. So we want to use the customized sqlite version for our App.
I\'m trying to build a simple Android application using NDK. Here are the contents of my Android.mk LOCAL_PATH := $(call my-dir)
I have recently had to change my work Android phone to an HTC Incredible S to use for Android NDK debugging. Unfortunately, the ndk-gdb script fails to attach the debugger, coming up with the error ru
I\'d like to analyze stack trace from An开发者_开发问答droid NDK. How do I read it on Windows machine, please?
I\'m working on an Android project and I am using the NDK to call native methods. I have two libraries (.so files) and one is located in the libs/armeabi folder and the other one is located in the li
I can play Wav files using the below code without issues.When trying to play the exact same media in Mp3 format I only get garbled junk.I believe I am fundamentally misunderstanding how the avcodec_de
Is there a way to make a native C executable run forever (in background) in Android OS? I have ported libpcap in Android and I made a sniffer. I have a rooted HTC Hero. I run the sniffer in the backgr
I ran my OpenGL ES 2.0 sample app (which runs on fine on iOS devices) on HTC Desire HD (2.3.3), and I\'m getting tons of the following messages in LogCat.
I was thinking of the following scenario happening while a pthread is running: pthread_mutex_lock(...);
I have this app (Only one activity) that use some开发者_如何学JAVA android UI and some native C++ lib to do OpenGl drawing and calculation.