mirror of
git://f0xx.org/android_cast
synced 2026-07-29 09:38:08 +03:00
12 lines
297 B
C
12 lines
297 B
C
#include <jni.h>
|
|
#include <android/log.h>
|
|
|
|
#define LOG_TAG "androidcast_codecs"
|
|
|
|
JNIEXPORT jint JNI_OnLoad(JavaVM *vm, void *reserved) {
|
|
(void)vm;
|
|
(void)reserved;
|
|
__android_log_print(ANDROID_LOG_INFO, LOG_TAG, "androidcast codecs native library loaded");
|
|
return JNI_VERSION_1_6;
|
|
}
|