有没有一种方法可以轻松启动和管理 android 项目及其依赖项?
Is there a way to easily start and manage an android project and it's dependancies?
我正在寻找一种启动和管理 Android 项目的简单且有些自动化的方法。我一直在这里和那里从事一些项目,发现很多时间依赖性是一个痛点。我目前正在使用 Eclipse 并研究 Maven。据我了解,这是一个依赖管理器。如果有人可以提供有关好的流程或工具的建议以减少设置和初始化的麻烦,我将不胜感激。谢谢!
如果您开始学习 Android,请不要浪费时间学习 Maven / the Android Maven plugin, but go for Gradle / the Gradle plugin for Android and Android Studio 作为 IDE。 Maven 和 Gradle 都是依赖管理器(和构建系统)。
Google 的 docs on the new Gradle build system contain a section about why Gradle was chosen, and examples about how to manage dependencies。基本上,您需要做的就是添加存储库和编译依赖项,例如
repositories {
mavenCentral()
}
dependencies {
compile 'com.google.guava:guava:11.0.2'
}
android {
...
}
我正在寻找一种启动和管理 Android 项目的简单且有些自动化的方法。我一直在这里和那里从事一些项目,发现很多时间依赖性是一个痛点。我目前正在使用 Eclipse 并研究 Maven。据我了解,这是一个依赖管理器。如果有人可以提供有关好的流程或工具的建议以减少设置和初始化的麻烦,我将不胜感激。谢谢!
如果您开始学习 Android,请不要浪费时间学习 Maven / the Android Maven plugin, but go for Gradle / the Gradle plugin for Android and Android Studio 作为 IDE。 Maven 和 Gradle 都是依赖管理器(和构建系统)。
Google 的 docs on the new Gradle build system contain a section about why Gradle was chosen, and examples about how to manage dependencies。基本上,您需要做的就是添加存储库和编译依赖项,例如
repositories {
mavenCentral()
}
dependencies {
compile 'com.google.guava:guava:11.0.2'
}
android {
...
}