前言
在上一篇文章 中,已经搭建好了本地仓库,这一篇,主要介绍在Android Studio中通过Gradle上传AAR到本地仓库,以便其它项目引用。
上传AAR
- 在项目根目录下的gradle文件的
dependencies节点增加
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.15.2"
完整的gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
maven{
url 'http://localhost:8081/artifactory/android_group/'
}