方法一:
(1) 将jar文件复制、粘贴到app/libs目录中
(2) 右键点击jar文件,并点击弹出菜单中的 Add As Library,将jar文件作为类库添加到项目中
方法二:
(1) 将jar文件复制、粘贴到app/libs目录中
(2) 在app下的 build.gradle里的dependencies节点下添加引用
AS 3.0之前
...
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.0.0'
compile files('libs/gson-2.8.jar')//引用gson解析架包
...
}
AS 3.0之后:
...
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
testImplementation 'junit:junit:4.12'
implementation 'com.android.support:appcompat-v7:25.0.0'
implementation files('libs/gson-2.8.jar')//引用gson解析架包
...
}
(3) 同步更新Gradle (Sync now)
本文详细介绍了两种在Android项目中引入jar文件的方法。第一种是通过直接将jar文件添加为库,第二种则是在build.gradle中添加依赖。适用于Android Studio不同版本。
243

被折叠的 条评论
为什么被折叠?



