Cocos2d-x android can't resolved coscos2dx library

自闭症网瘾萝莉.ら 提交于 2019-11-29 02:55:55

问题


i am starting by macOSX xcode4.5 .
i tried to tutorials.

Using cocos2dx, it completes building of macOSX,
The problem occurred in android sources.

No contents of cocos2dxActivity are described.
so, org.cocos2dx.lib is not other files.

android is not running.

i use ndk-r8. What will be a problem?


回答1:


In cocos2d-x 2.0.3 ...Cocos2d-x Lib java files has been considered as a different project only So import that project in the eclipse

Lets make it Simple

  1. First Import the project in eclipse from this path - cocos2d-2.0-x-2.0.3/cocos2dx/platform/android/java

You will see libcocos2dx project in eclipse ...Keep this project open always otherwise your projects will give error on the syntax of library

  1. Run create-android-project

  2. Now Import the project which you have created and just Run (If you know the concept of isLibrary then that's how they are maintaining it now ..)

Also additional information to run build-native.sh from eclipse only , Right Click Project ->C/C++ Build Uncheck Use Default Build COmmand and add following bash ${workspace_loc:/YourProjName}/build_native.sh NDK_DEBUG=1 V=1

Good Luck ..If any question please feel free to ask




回答2:


Change

import org.cocos2dx.lib.Cocos2dxActivity;

to

import android.app.Activity;

and change

extends Cocos2dxActivity

to

extends Activity



回答3:


You can copy the folder (cocos2d-2.0-x-2.0.3/cocos2dx/platform/android/java) beside the proj.android folder of your game folder, then import it with the game in eclipse.After importing these 2 projects, open Properties of the game and then add libcocos2dx as library and click apply and build.

i have tries these and works for me




回答4:


i figure out by myself..

Using cocos2dx 2.0.3 (2012-09-26),
eclipse source:org.cocos2dx.lib is not created.
(org.cocos2dx.lib is created cocos2dxActivity only.
and cocos2dxActivitiy is no contents described.

cocos2dxActivity:
package org.cocos2dx.lib;
mport android.app.Activity;
public class Cocos2dxActivity extends Activity{
}
)

therefore,
Using cocos2dx 2.0.2 (2012-08-30), eclipse build ok.

i can't understand what is problem...



来源:https://stackoverflow.com/questions/12654078/cocos2d-x-android-cant-resolved-coscos2dx-library

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!