cocos2d 移植android 5.0系统上黑屏而不闪退

前端之家收集整理的这篇文章主要介绍了cocos2d 移植android 5.0系统上黑屏而不闪退前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

android 5.0系统,cocos2dx 3.2 ndk :android-ndk-r8e

android 项目中的 Application.mk 文件

APP_STL := c++_static
改为:

APP_STL := gnustl_static


原因:详细请参考http://zengrong.net/post/2242.htm

调用jni过程中也出现闪退的现象,

使用CallStaticIntMethod 函数返回值时出现闪退,应改为CallStaticVoidMethod

CallStaticIntMethod >>CallStaticVoidMethod

原文链接:https://www.f2er.com/cocos2dx/343697.html

猜你在找的Cocos2d-x相关文章