Wednesday, March 20, 2013

[Android] Easy Logging

From the Java ( log to logcat)

import android.util.Log

Log.w("myApp", "My Message");

From the NDK/Native side ( still logs to logcat)

#include
#define APPNAME "MyApp"


__android_log_print(ANDROID_LOG_VERBOSE, APPNAME, "MyMessage\n");

also remember to add the following to Android.mk

LD_LDFLAGS := -llog

No comments: