自学内容网 自学内容网

Android Gralde 新版aar依赖问题解决

问题:direct local .aar file dependencies are not supported when building an aar.

1.mylibrary 下 build.gradle 文件 .aar文件依赖修改:

之前为:

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar','*.aar'])
}

更改为:

dependencies {
    compileOnly fileTree(dir: 'libs', include: ['*.jar','*.aar'])
}

2.app 下 build.gradle 文件添加以下:

dependencies {
    implementation project(':myLibrary')
    implementation fileTree(dir: '../myLibrary/libs', include: ['*.jar', '*.aar'])
}


原文地址:https://blog.csdn.net/qq_29364417/article/details/142830553

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!