1.添加jar文件
将jar文件复制至app module目录下的libs文件夹下,然后打开app module目录下的build.gradle
配置文件,在dependencies
项中添加配置命令,这里有
一次性引入libs目录下所有jar文件
compile fileTree(include: ['*.jar'], dir: 'libs') 单个逐一引入jar文件
compile files('libs/universal-image-loader-1.8.6-with-sources.jar')
2.通过配置添加第三方库
举例:引入ButterKnife第三方库
git:https://github.com/JakeWharton/butterknife
1>在工程根目录下build.grade文件中添加apt
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
}
2>在app目录下的build.grade 引入apt和butterknife配置
apply plugin: 'android-apt' android {
...
} dependencies {
compile 'com.jakewharton:butterknife:8.4.0'
apt 'com.jakewharton:butterknife-compiler:8.4.0'
}