android studio如何打包library并上传本地仓库,或者上传网络仓库

使用文件模式管理library,显得既低效又混乱。考虑使用gradle脚本打包librar之后,上传本地maven库获得网络库,
网络库包括:

  1. jcenter远程仓库(公共),需要注册。
  2. github搭建的远程仓库(公共)
  3. nexus搭建的maven私服。

执行打包上传aar的命令:

 ./gradlew -p PImagePicker(你的library的name) clean build uploadArchives -info

本地库

首先确定我们新建的moduleAndroid library,可以在modulebuild.gradle看到apply plugin: 'com.android.library'
新增如下

apply plugin: 'com.android.library'
apply plugin: 'maven'

新增打包脚本:

uploadArchives {
    repositories {
        mavenDeployer {
            //本地maven
            repository(url: 'file:///Users/cly/Documents/Android/repo/')
            pom.project {
                name '库名,打包命令使用'
                groupId 'com.hammer.anlib'
                artifactId 'PImagePicker'
                version '1.0.0'
                packaging 'aar'

                licenses {
                    license {
                        name 'The MIT License'
                        url 'https://raw.githubusercontent.com/hammercui/android-advance-cn/master/LICENSE'
                        distribution 'repo'
                    }
                }
                developers {
                    developer {
                        id 'hammercui'
                        name 'hammercui'
                        email '[email protected]'
                    }
                }
            }
        }
    }
}

然后执行上文中提到的打包命令,打包完成后我们就可以在Users/cly/Documents/Android/repo/目录看到com/hammercui/anlib/PImagePicker/1.0.0/等文件,表示打包成功。

window下的问题
1 jvm设置问题

D:\androidProjects\androidLibrary>gradlew.bat -p PAndroidShare clean build uploadArchives -info
To honour the JVM settings for this build a new JVM will be forked. Please consider using the daemon: https://docs.gradle.org/2.14.1/userguide/gradle_daemon.html.

这种情况一般是org.gradle.jvmargs=-Xmx2048m的配置问题,jvm内存不足,因为gradle使用的groovy语言也是jvm虚拟机语言。如果修改了最大内存还不行,可能是jdk的版本问题,最好选用jdk8_64位。

如何引用?

在工程目录的build.gradle新增maven路径

 maven{
      url 'file:///Users/cly/Documents/Android/repo/'        
      }

然后在其他module直接引用依赖

//+号表示一直饮用最新版本
compile 'com.hammer.anlib:PImagePicker:+@aar'

网络库

我们使用nexus来配置maven库

如何搭建

  1. apt安装jdk
    sudo apt-get install software-properties-common
    sudo apt-get install python-software-properties
    sudo add-apt-repository ppa:webupd8team/java
    sudo apt-get update
    Oracle JDK 6(旧版本)
    sudo apt-get install oracle-java6-installer
    Oracle JDK 7(较新的稳定版本)
    sudo apt-get install oracle-java7-installer
    Oracle JDK 8(最新预览版本)
    sudo apt-get install oracle-java8-installer

  2. 安装Nexus
    使用wget命令下载 wget 想要下载nexus版本的地址

[root@localhost nexus]# wget https://sonatype-download.global.ssl.fastly.net/nexus/oss/nexus-2.11.2-03-bundle.tar.gz
[root@localhost nexus]# ls
nexus-2.11.2-03-bundle.tar.gz

解压到/usr/local/nexus目录

[root@localhost nexus]# mkdir /usr/local/nexus

[root@localhost nexus]# tar -zxvf nexus-2.11.2-03-bundle.tar.gz  -C /usr/local/nexus/

[root@localhost nexus]# cd /usr/local/nexus

[root@localhost nexus]# ls

编辑 Nexus 的 nexus.properties 文件,配置端口和 work 目录信息(保留默认)

[root@localhost nexus]# cd nexus-2.11.2-03
[root@localhost nexus-2.11.2-03]# cd conf
[root@localhost conf]# vi nexus.properties
//默认不做修改

编辑 nexus 脚本, 配置 RUN_AS_USER 参数

vim /usr/nexus/nexus-2.11.2-03/bin/nexus
NEXUS_HOME=".."
改为(不修改默认也可以):
NEXUS_HOME="nexus安装目录" //比如/usr/local/nexus/nexus-2.11.2-03/

#RUN_AS_USER=
改为:
RUN_AS_USER=root

防火墙增加配置

-A INPUT -m state --state NEW -m tcp -p tcp --dport 8081 -j ACCEPT

启动 nexus [nexus的bin目录下的可以执行文件可以进入bin查看]

[root@localhost conf]# /usr/nexus/nexus-2.11.2-03/bin/nexus start
****************************************
WARNING - NOT RECOMMENDED TO RUN AS ROOT
****************************************
Starting Nexus OSS...
Started Nexus OSS.

如何上传
网络私有库:我们一般使用nexus搭建私有仓库。比如搭建的私有库地址是:
http://maven.****.com/nexus/content/repositories/thirdparty
我们只需要在打包文件里替换下

//私有maven
repository(url:  'http://???'){
                authentication(userName: '账号', password:'密码')
}
            

或者使用github提供的公共免费maven库,具体使用方法与私有类似。

你可能感兴趣的:(android studio如何打包library并上传本地仓库,或者上传网络仓库)