我没有完整的本机应用程序,我的游戏引擎为C ++,并链接到Java,以便呈现和处理游戏。我什至将android事件传递给引擎并在那里进行处理,所以我想使用C ++中的Google Play game services。
然后,我没有Google samples中的android_main
条目。
我已经尝试过:
当我在Platform Configuration
对象上调用Valid()时,它总是返回false 。
我也有名为JNI_OnLoad(vm)
jint JNI_OnLoad(JavaVM *vm, void *reserved) {
javaVM = vm;
gpg::AndroidInitialization::JNI_OnLoad(vm);
return JNI_VERSION_1_6;
}
。
gpg::AndroidPlatformConfiguration platform_configuration;
platform_configuration.SetActivity(Activity); //What is this Activity?