axmol/templates/lua-template-default/frameworks/runtime-src/proj.android/jni/hellolua/main.cpp

19 lines
375 B
C++
Raw Normal View History

#include <memory>
2014-03-10 19:33:57 +08:00
#include <android/log.h>
#include <jni.h>
#include "AppDelegate.h"
2014-03-10 19:33:57 +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 19:33:57 +08:00
void cocos_android_app_init(JNIEnv* env) {
2014-03-10 19:33:57 +08:00
LOGD("cocos_android_app_init");
appDelegate.reset(new AppDelegate());
2014-03-10 19:33:57 +08:00
}