Thursday, 10 January 2013

Introduction           Google Play currently requires that your APK file be no more than 50MB. For most applications, this is plenty of space for all the application's code and assets. However, some apps need more space for high-fidelity graphics, media files, or other large assets. Previously, if your app exceeded 50MB,...

Tuesday, 8 January 2013

This tutorial shows overview of NDK & how to setup Eclipse for using C/C++ together with Java in Android projects. How NDK comes into Picture? Portability among hardware and adaptability to the constrained resources of mobile devices: this is the real essence of the mobile challenge from a technical perspective. With Android, ones has to deal with multiple screen...

Wednesday, 2 January 2013

Measure Performance Time Using NDK.

Difference between Performance time in NDK in JAVA through One Application. Create MathLib class and put below code. package com.anky.mathsndk; import android.util.Log; public class MathLib { private static final String TAG = "Math_lib"; private static long fib(long n) { return n <= 0 ? 0 : n == 1 ? 1 : fib(n - 1) + fib(n - 2); } // Recursive Java implementation of the Fibonacci...