axmol/tests/cpp-empty-test/proj.android/jni/main.cpp

19 lines
375 B
C++
Raw Normal View History

#include <memory>
2014-03-10 20:07:20 +08:00
#include <android/log.h>
#include <jni.h>
2014-03-10 20:07:20 +08:00
#include "AppDelegate.h"
2014-03-10 20:07:20 +08:00
#define LOG_TAG "main"
#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG,LOG_TAG,__VA_ARGS__)
namespace {
std::unique_ptr<AppDelegate> appDelegate;
}
2014-03-10 20:07:20 +08:00
void cocos_android_app_init(JNIEnv* env) {
2014-03-10 20:07:20 +08:00
LOGD("cocos_android_app_init");
appDelegate.reset(new AppDelegate());
2014-03-10 20:07:20 +08:00
}