main.cpp 375 B

123456789101112131415161718
  1. #include <memory>
  2. #include <android/log.h>
  3. #include <jni.h>
  4. #include "AppDelegate.h"
  5. #define LOG_TAG "main"
  6. #define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG,LOG_TAG,__VA_ARGS__)
  7. namespace {
  8. std::unique_ptr<AppDelegate> appDelegate;
  9. }
  10. void cocos_android_app_init(JNIEnv* env) {
  11. LOGD("cocos_android_app_init");
  12. appDelegate.reset(new AppDelegate());
  13. }