导入
将aar(或jar)包复制到项目 module 下的 libs 文件夹中
添加依赖
implementation fileTree 方式
同一 module 不允许出现 编译类型不同的jar(或aar),
apply plugin: 'com.android.application'
android {
...
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
...
}
implementation 方式
同一 module 可以引用不同编译类型 jar(或aar),
apply plugin: 'com.android.application'
android {
...
}
repositories {
flatDir {
dirs 'libs'
}
}
dependencies {
implementation(name:'xxx-debug', ext:'aar')
//或
implementation(name:'xxx-debug', ext:'jar')
}