在Android Studio上的项目应用程序中添加jar文件的最佳做法是什么?
例如,我们将使用gson-2.3.1.jar
。
1)使用模块
并在主模块中添加build.gradle:
dependencies {
...
compile project(":gson-2.3.1")
}
2)使用Libs文件夹
gson-2.3.1.jar
)放入libs
文件夹compile files('libs/gson-2.3.1.jar')
或compile fileTree(dir: 'libs', include: ['*.jar'])
答案 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'])
}