最好在新模块或Android Studio项目的l​​ibs文件夹中添加jar

时间:2015-03-31 08:07:03

标签: java android jar android-studio gradle

在Android Studio上的项目应用程序中添加jar文件的最佳做法是什么?

例如,我们将使用gson-2.3.1.jar

1)使用模块

New jar module capture

并在主模块中添加build.gradle:

dependencies {
    ...
    compile project(":gson-2.3.1")
}

2)使用Libs文件夹

  • 将Gson jar(在我的情况下,gson-2.3.1.jar)放入libs文件夹
  • 并在主模块中添加build.gradle: compile files('libs/gson-2.3.1.jar')compile fileTree(dir: 'libs', include: ['*.jar'])

1 个答案:

答案 0 :(得分:3)

在我看来,最好的方法是使用maven依赖

build.gradle

中添加此行
dependencies {
    compile 'com.google.code.gson:gson:2.3.1'
}

如果您想使用jar,请在libs文件夹中添加jar文件并使用:

dependencies {
   compile fileTree(dir: 'libs', include: ['*.jar'])
}