I have a rooted device and set the build properties as given in the Android Dev Link
http://android-developers.blogspot.in/2011/07/debugging-android-jni-with-checkjni.html
$ adb shell stop
$ adb shell setprop debug.checkjni 1
$ adb shell start
But after doing this i am getting CheckJNI is OFF in the DDMS log
Could any one has some solutions to turn the CheckJNI “on”
Thanks
Try this:
Go to data > localproperties
In localproperties if have write permission
Have a file with local.prop in your local disk with this text dalvik.vm.checkjni=true.
adb push /data/local.prop /local.prop.
Then restart the device then you will see CheckJNI Option in LOGCAT.