android studio最新版引用项目的libs目录下的jar,arr文件

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

在这里插入图片描述

使用这种方式遇到的问题:
单独打aar包时:
Direct local .aar file dependencies are not supported when building an AAR. The resulting AAR would be broken because the classes and Android resources from any local .aar file dependencies would not be packaged in the resulting AAR. Previous versions of the Android Gradle Plugin produce broken AARs in this case too (despite not throwing this error).
生成aar时不支持直接的本地.aar文件依赖项。结果AAR将被破坏,因为来自任何本地.AAR文件依赖项的类和Android资源不会打包在结果AAR中。

解决办法;
https://blog.csdn.net/yeshennet/article/details/114331818

解决办法一:
File->New module…->import .jar/.aar Package
增加一个module,module中放置全部的aar,比如

-configurations.maybeCreate("default")
-artifacts.add("default", file('alipaySdk-15.6.5.aar'))
-artifacts.add("default", file('xxxx1.0.3.aar'))
-artifacts.add("default", file('nnnx1.0.3.aar'))

解决方法二
在app的目录下增加libs,把aar的依赖放到里面去。比如
app/build.gradleView

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

libXXXX/build.gradle

dependencies{
    compileOnly fileTree(dir: "../app/libs", include: ["*.aar"])
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

KindSuper_liu

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值