工具类

android module内含aar包,完整打包上传maven

2020-11-09  本文已影响0人  散仙_云折

问题:我们有一个Android Module内部引用了一个aar,当我们打包这个Android Module时,引用的aar并不会打包到最终的aar里。

一、思路一:

将引用的aar解压,把解压后的资源分别放入到现用的Android Module里。

二、思路二:

借助Maven,将引用的aar发布的maven仓库,AndroidModule通过maven地址引用该aar,这样最终打包的aar内含有该maven引用。

对比:思路二更提现了封装解耦的特性,代码清晰。

三、实现:

将已打包好的aar包 发布成一个maven库

[图片上传失败...(image-afdd50-1604887244775)]

apply plugin: 'java-library'

sourceCompatibility = "1.7"
targetCompatibility = "1.7"

tasks.withType(JavaCompile) {
    options.encoding = 'UTF-8'
}

//上传到maven
apply plugin: 'maven'
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!下面AAR的文件名改成你放到libs文件夹里的文件名
def coreAarFile = file('libs/weex_sdk-0.18.0.aar')
artifacts {
    archives coreAarFile
}

uploadArchives {
    repositories {
        mavenDeployer {
            //!!!!!!!!!!!!!!!!!!!!!!!!!!这里配置上传到maven仓库后的  groupId、artifactId、version
            repository(url: "file://xxx")
            pom.version = "1.0.8"
            pom.artifactId = "weex"
            pom.groupId = "com.masonliu"
        }
    }
}

//使用的时候要加后缀.aar,例如:com.masonliu:weex:1.0.8@aar
dependencies {
    api 'com.masonliu:weex:1.0.8@aar'
}


扩展阅读:

maven仓库的几种类型

上一篇 下一篇

猜你喜欢

热点阅读