从 libs 引入 aar 包
首先在 project 的 build.gradle 的 allprojects 的 repositories 中添加
flatDir{ dirs 'libs'}
然后在要引入这个 aar 的 build.gradle 中
implementation (name:'xxx',ext:'aar')
就可以了
首先在 project 的 build.gradle 的 allprojects 的 repositories 中添加
flatDir{ dirs 'libs'}
然后在要引入这个 aar 的 build.gradle 中
implementation (name:'xxx',ext:'aar')
就可以了