Created
February 27, 2016 20:53
-
-
Save marktani/8a7dc259d241a3e7dfab to your computer and use it in GitHub Desktop.
Native Android article
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <jni.h> | |
#include <android/log.h> | |
extern "C" { | |
void Java_com_your_package_www_MainActivity_log(JNIEnv *env, jobject thiz); | |
}; | |
#define TAG "Native Android" | |
void Java_com_your_package_www_MainActivity_log(JNIEnv *env, jobject thiz) | |
{ | |
__android_log_print(ANDROID_LOG_VERBOSE, TAG, "The value of 1 + 1 is %d", 1+1); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment