多级 model 引用 aar

作为 Library 存在的 module 如果引用 arr 需要对 gradle 做如下配置

1、module 的 build.gradle 配置
  1. apply plugin: 'com.android.application'
  2. android {
  3. ...
  4. }
  5. repositories {
  6. flatDir{ dirs 'libs' }
  7. }
  8. dependencies {
  9. implementation fileTree(include: ['*.jar'], dir: 'libs')
  10. implementation(name:'第三方库名称', ext:'aar')
  11. }
2、app 的 build.gradle 配置
  1. repositories {
  2. flatDir {
  3. dirs project(':Module名字').file('libs')
  4. }
  5. }

(完)