如何在android studio中配置maven?

时间:2014-10-25 13:33:42

标签: java android maven android-studio

我一直在使用eclipse。它很好用m2 plugin.now我切换到android studio.i不知道如何将我的项目转换为maven项目。任何帮助将不胜感激?

P.s我在我的Windows 7中安装了maven。在build.gradle中

buildscript {
 repositories {
mavenCentral()
 }

 dependencies {
classpath 'com.android.tools.build:gradle:0.12.0'
 }
}

1 个答案:

答案 0 :(得分:0)

mavenCentral()central repository的简写,就像this tag in the pom.xml一样。

build.gradle Gradle 构建系统构建文件,要转换为 Maven 构建系统,您需要pom.xml

我建议您导入现有项目(具有pom.xml)视图文件>导入项目... 并在导入期间选择Maven。

Google's suggested way of building Android apps is with Android Studio, which tightly integrates with Gradle and that's the preferred and most advanced way of assembling apks for apps

引用libs

Gradle拥有Maven所拥有的东西。

<project>
<dependencies>
<dependency>
    <groupId>com.github.bumptech.glide</groupId>
    <artifactId>glide</artifactId>
    <version>3.3.1</version>
</dependency>
</dependencies>
</project>

与(注意这与buildscript { dependencies { ... } }不一样)

相同
dependencies {
    compile 'com.github.bumptech.glide:glide:3.3.1'
}

请参阅Maven Central中的依赖关系信息,搜索此lib:http://search.maven.org/#artifactdetails%7Ccom.github.bumptech.glide%7Cglide%7C3.3.1%7Cjar