0

我需要将roottools添加到我的 android 项目中,我打算将 jar 添加到我的 git repo 并将 jar 添加到我的 eclipse 构建配置中,如此所述。问题是,第二步不会导致 repo 发生任何变化。更改仅在.classpath每个人建议添加到 gitignore 的文件中。所以问题是,我如何将这些信息添加roottools.jar is included in the build path到我的 git repo 中?

4

1 回答 1

0

使用不依赖于 IDE 的构建工具,例如 Maven。然后将构建脚本(在 Maven 的情况下为 pom.xml)检查到 git 中。

然后你仍然可以使用 Eclipse,因为它支持 Maven。

以下是有关如何使用 Maven 设置 Android 项目的信息:http ://code.google.com/p/maven-android-plugin/wiki/GettingStarted

于 2013-01-12T13:38:11.220 回答