How to set value for ro.sf.lcd_density in android with display 1280*800 ?

The value you set for ro.sf.lcd_density in Android typically depends on the desired display density or DPI … Read more

How to install Android NDK on Ubuntu Linux ?

Android NDK

The Android NDK is a toolset that lets you implement parts of your app in native code, … Read more

How to check the list of available sensors in Android ?

In android you check the list of all the supported sensors in your device by two ways. … Read more

Understanding Android Bluetooth Code : part 1

Bluetooth

Android provides a default Bluetooth stack, BlueDroid, that is divided into two layers: 1) Bluetooth Embedded System … Read more

Analyse android booting using Bootchart

Bootchart provides CPU and I/O load breakdown of all processes for the whole system. It doesn’t require … Read more

How to extract android boot.img ?

boot: The boot partition contains a kernel image and a RAM disk combined via mkbootimg. In order to flash the … Read more

How to create a native daemon and run from init.rc in Android ?

Android’s init is located at the root of the filesystem i.e. /init and also it uses different … Read more

Android.mk variable to link system or external library during compilation

LOCAL_LDLIBS This variable contains the list of additional linker flags for use in building your shared library … Read more