码迷,mamicode.com
首页 > 移动开发 > 详细

Cocos2d-x 3.x 如何编译成安卓程序

时间:2015-02-13 23:42:19      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:

1.安装JDK

2.安装eclipse,安卓官方现在不提供eclipse for android,只好自己配置了。首先安装一个eclipse,在Help——Install New SoftWare中安装ADT,地址为http://dl-ssl.google.com/android/eclipse技术分享

可能需要漫长的等待。

3.创建AVD。根据http://www.cocos2d-x.org/boards/6/topics/12563 所说,需要安装4.0.3以上的虚拟机。

4.在eclipse中导入proj.android工程,会自动编译,需要等待几分钟。

编译完成后,发现有一个错误提示,从工程——cocos2d——cocos——platform——android——java——src中将org和com文件夹拷贝到当前工程中,错误提示消失。

5.在虚拟机运行的时候,又遇到了另一个错误:

java.lang.IllegalArgumentException: No configs match configSpec

解决方法:

在AndroidMainfest文件中将<uses-feature android:glEsVersion="0x00020000">改为
<uses-feature android:glEsVersion="0x00020000" android:required="true" />

在android-sdk安装目录下的 \samples\android-16\ApiDemos\src\com\example\android\apis\graphics里

GLES20Activity.java中的方法detectOpenGLES20,修改成

import android.os.Build;  
private boolean detectOpenGLES20() {  
        ActivityManager am =  
            (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);  
        ConfigurationInfo info = am.getDeviceConfigurationInfo();  
        return (info.reqGlEsVersion >= 0x20000 || Build.FINGERPRINT.startsWith(‘generic‘));  
    }  

 

③在AVD设置中勾选Use Host GPU

技术分享

6.终于正常运行了!另:在manifest中修改为android:screenOrientation="portrait"可以设为竖屏,默认为横屏。

 

Cocos2d-x 3.x 如何编译成安卓程序

标签:

原文地址:http://www.cnblogs.com/mandora/p/4290961.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!