0

I'm making a small android game for someone usign the AndEngine library and am stumped on how to easily send them the project without requiring them to do any configuration, just download the project import it into eclipse and run it.

AndEngine is a library based engine, to use it in your project you just add the actual source projects to your build path and reference them that way, so I need a way to send my project + the AndEngine source to them in such away that they can just run it without having to configure anything. I tried just putting all the projects(the game + the andengine library projects) in one workspace and sending the whole workspace but the projects are linked using the absolute path, instead of a path relative to my project, so it doesnt work on a different computer with different folders and everything.

你会建议我怎么做?我们都将使用eclipse。

这是我第一次不得不做这样的事情,我不知道从哪里开始,我真的需要快速帮助,我很感激我得到的任何回应,谢谢。

4

1 回答 1

0

虽然这确实需要一些配置,但我建议使用 GIT 等版本控制来管理它。Bitbucket有免费的私有仓库(小团队免费,大团队便宜) Github 也很受欢迎。

然后,您可以简单地在 github 上发送 andengine 库的 git 路径以及存储库中的项目,然后 eclipse 将完成剩下的工作。

去做这个:

  • 转到文件>导入>
  • 如果您安装了 git 插件,您将看到“GIT”文件夹选项。选择“来自 Git 的项目”
  • 从存储库源中选择“URL”。
  • 然后从 bitbucket/github 粘贴到存储库路径并完成向导。

从 bitbucket 获取 URL 时,请务必选择“HTTPS”选项而不是“SSH”,除非您要设置 RSA 密钥。而且由于您正在寻找简单的东西,因此您不需要。

此外,如果您不同时使用它,我建议您尝试使用 google 发布的名为 ADT 的 android-specific build - 它集成了 eclipse git 插件和其他方便的 android 工具,并且需要最少的更改。

最后一件事:由于您可能会发送多个文件,git 也使生活变得轻松,因为您只需对存储库进行提交,其他人就可以再次从同一源获取新的更新文件。

于 2013-04-24T22:11:33.233 回答