赞
踩
使用Android Studio 新建Android项目并创建module
创建的module名字可以根据用途自定义,本次使用logplugin命名
删除module中无用文件夹,红框中的全部删除
在logplugin中的build.gradle中配置maven打包上传脚本
plugins { id 'java-library' id 'maven-publish' // maven插件 } // 配置maven打包参数 publishing { publications { maven(MavenPublication) { groupId = 'com.peter.example' // 包名 artifactId = 'log-plugin // 插件名 version = '1.0.0 // 版本 artifact "libs/mylibrary-release.aar" // 将本地文件夹中aar包一起上传到仓库 from components.java // 生成jar包 } } repositories { maven { // 配置本地部署文件夹,可根据不同系统自定义 def mavenDirPath = file('D:\\maven') url = "file://${mavenDirPath.absolutePath}" } } } java { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 }
cd existing_folder
git init
git remote add origin git仓库地址
git add .
git commit -m "Initial commit"
git push -u origin master
> https://域名地址/Group名称/项目名/raw/分支
> 如果该项目是你自己的。而不是组里面的。那么Group名称就得换成你的用户名了
implementation 'com.peter.example:log-plugin:1.0.0'
https://blog.csdn.net/wenwen091100304/article/details/89792240
https://zhuanlan.zhihu.com/p/145941547
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。