如何最好地为 Android 应用程序设置存储库?
我正在 Github 上为我的 Android 应用程序的源代码设置一个存储库。我正在使用 Eclipse 和 ADT 插件。除了 src/、res/ 和 AndroidManifest.xml 中的所有内容之外,我还应该包含哪些内容,以便任何想要使用源代码的人都可以轻松地开始使用 Eclipse?
I am setting up a repository on Github for the source code of my Android app. I am using Eclipse with the ADT plugin. Besides everything in src/, res/, and AndroidManifest.xml, what else should I include so that anyone who wants to work with the source code can begin work with Eclipse with minimal effort?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该包含除
bin
文件夹(这可以由其他用户生成)之外的所有内容。另外,如果您使用 Eclipse,您可能需要使用 eGit。You should include everything except the
bin
-folder (this can be generated by the other user). Also, if you're using Eclipse, you might want to use eGit.在目录的根目录上设置存储库(git init),您将避免思考此类问题。只需添加每次您希望更新存储库并推送时 git status 显示的更改即可。
无论如何,尽量不要包含 .class 文件 - 即它是无用的,因为贡献者可以自己编译代码。
基本上:
Set up the repository (git init) on the root of the directory and you will avoid thinking on such problems. Just add the changes that git status shows every time you wish to update the repository and push.
Anyway try not to include the .class files - i.e its useless as the contributors can compile the code theirselves.
Basically:
如果您有 lib 目录(包括 .jar 文件),您还可以将其包含在内。
You can also include your lib directory (that includes .jar files) if you have one.