Android使用kts发布aar到JitPack仓库

news/2024/12/23 1:53:31/

Android使用kts发布aar到JitPack

之前做过sdk开发,需要将仓库上传到maven、JitPack或JCenter,但是JCenter已停止维护,本文是讲解上传到JitPack的方式,使用KTS语法,记录使用过程中遇到的一些坑.相信Groovy的方式是大家经常使用的,但是KTS语法应该使用很少,项目着急上线的话遇到问题不好解决,于是为了稳定肯定是Groovy为首选,这里就不纠结了,直接上代码.

1.创建项目(library方式):

由于之前用鸿神的wanandrdoi接口api写过简单demo,所以本文的aar还是采用wanandrdoid的接口请求api

在这里插入图片描述

2.修改项目build.gradle依赖:

plugins {
//alias(libs.plugins.androidApplication)
alias(libs.plugins.androidLibrary)
alias(libs.plugins.jetbrainsKotlinAndroid)
alias(libs.plugins.mavenPublish)
}

group = “om.example.wanandroidsdk”
version = “1.0.0”

afterEvaluate {
publishing {
publications {
// Creates a Maven publication called “release”.
create(“release”) {
// Applies the component for the release build variant.
// from(components[“release”])
// You can then customize attributes of the publication as shown below.
groupId = (group.toString())
artifactId = “wanandroidsdk-kts”
version = version
}
}
}
}

android {
namespace = “com.example.wanandroidsdk”
compileSdk = 34

defaultConfig {//applicationId = "com.example.wanandroidsdk"minSdk = 24targetSdk = 34

/* versionCode = 1
versionName = “1.0”*/

    testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}buildTypes {release {isMinifyEnabled = false//isDebuggable = false

// signingConfig = signingConfigs.getByName(“release”)
proguardFiles(
getDefaultProguardFile(“proguard-android-optimize.txt”),
“proguard-rules.pro”
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = “1.8”
}
}

dependencies {
implementation(libs.androidx.core.ktx)
implementation(libs.androidx.appcompat)
implementation(libs.material)
implementation(libs.androidx.activity)
implementation(libs.androidx.constraintlayout)
testImplementation(libs.junit)
androidTestImplementation(libs.androidx.junit)
androidTestImplementation(libs.androidx.espresso.core)
implementation(libs.okhttp)
implementation(libs.logging.interceptor)
implementation(libs.utilcodex)
implementation(libs.rxjava)
implementation(libs.retrofit)
implementation(libs.adapter.rxjava2)
implementation(libs.converter.scalars)
implementation(libs.converter.gson)
implementation(libs.androidx.core.ktx)
}

在这里插入图片描述

3.修改app目录下的依赖:

// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
alias(libs.plugins.androidApplication).apply(false)
alias(libs.plugins.androidLibrary).apply(false)
alias(libs.plugins.jetbrainsKotlinAndroid) apply false
alias(libs.plugins.mavenPublish) apply false
}
在这里插入图片描述

4.添加项目统一依赖管理:

[versions]
agp = "8.1.4"
kotlin = "1.9.0"
coreKtx = "1.10.1"
junit = "4.13.2"
junitVersion = "1.1.5"
espressoCore = "3.5.1"
appcompat = "1.6.1"
material = "1.10.0"
activity = "1.8.0"
constraintlayout = "2.1.4"
okhttp = "4.11.0"
logging-interceptor = "4.10.0"
utilcodex = "1.31.1"
rxjava = "2.2.21"
retrofit = "2.9.0"
adapter-rxjava2 = "2.9.0"
converter-scalars = "2.4.0"
converter-gson = "2.9.0"[libraries]
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
junit = { group = "junit", name = "junit", version.ref = "junit" }
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
material = { group = "com.google.android.material", name = "material", version.ref = "material" }
androidx-activity = { group = "androidx.activity", name = "activity", version.ref = "activity" }
androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
okhttp = {group = "com.squareup.okhttp3",name = "okhttp",version.ref = "okhttp"}
logging-interceptor = {group = "com.squareup.okhttp3",name = "logging-interceptor",version.ref = "logging-interceptor"}
utilcodex = {group = "com.blankj",name = "utilcodex",version.ref = "utilcodex"}
rxjava = {group = "io.reactivex.rxjava2",name = "rxjava",version.ref = "rxjava"}
retrofit = {group = "com.squareup.retrofit2",name = "retrofit",version.ref = "retrofit"}
adapter-rxjava2 = {group = "com.squareup.retrofit2",name = "adapter-rxjava2",version.ref = "adapter-rxjava2"}
converter-scalars = {group = "com.squareup.retrofit2",name = "converter-scalars",version.ref = "converter-scalars"}
converter-gson = {group = "com.squareup.retrofit2",name = "converter-gson",version.ref = "converter-gson"}[plugins]
androidApplication = { id = "com.android.application", version.ref = "agp" }
androidLibrary = { id = "com.android.library", version.ref = "agp" }
jetbrainsKotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
mavenPublish = { id = "com.vanniktech.maven.publish", version = "0.28.0" }

5.设置仓库名称、版本号:

由于我是之前设置过,这里直接上代码
group = “om.example.wanandroidsdk”
version = “1.0.0”

afterEvaluate {
publishing {
publications {
// Creates a Maven publication called “release”.
create(“release”) {
// Applies the component for the release build variant.
// from(components[“release”])
// You can then customize attributes of the publication as shown below.
groupId = (group.toString())
artifactId = “wanandroidsdk-kts”
version = version
}
}
}
}在这里插入图片描述

6.上传代码到github仓库:

使用sourcetree、git命令行等工具都可以,这里我使用的是SourceTree,具体过程就不细讲了相信大家都会,示例截图如下:

在这里插入图片描述

7.创建Release、Tag及版本:

点击截图所示的Tags

在这里插入图片描述

在这里插入图片描述

由于我之前测试过好几个版本所以这里的tag是v1.0.12

在这里插入图片描述

8.提交仓库到JitPack

在这里插入图片描述

9.打开JitPack

9.1:我的仓库地址:NingJinBo/WanAndroidSdk

9.2:将仓库地址复制到这个输入框中,然后点击Look Up,

在这里插入图片描述

9.3:然后会出现你的发布版本,再点击Get it.

现在提交成功了,再点击一下这个Get it。会自动向下滑,然后会告诉你怎么样在项目中使用这个依赖库。

在这里插入图片描述

10.测试我的依赖库:

10.1 在测试项目添加jitpack镜像配置

maven { url 'https://jitpack.io' }

10.2 引入我的aar仓库

implementation 'com.github.NingJinBo:wanandroidsdk:v1.0.19'

10.3 添加测试代码
package com.example.wansdktest

import android.os.Bundle
import android.util.Log
import android.widget.ImageView
import android.widget.TextView
import androidx.appcompat.app.AppCompatActivity
import com.bumptech.glide.Glide
import com.example.wanandroidsdk.bean.EasyDataBean
import com.example.wanandroidsdk.http.WanHttpCallBack
import com.example.wanandroidsdk.http.WanHttpUtil

class MainActivity : AppCompatActivity() {
private val TAG = “okhttp”
private val textView :TextView by lazy { findViewById(R.id.tv_test) }
private val iv :ImageView by lazy { findViewById(R.id.iv_test) }

override fun onCreate(savedInstanceState: Bundle?) {super.onCreate(savedInstanceState)setContentView(R.layout.activity_main)getData()
}private fun getData() {WanHttpUtil.getBanner(object : WanHttpCallBack {override fun onResponse(list: List<EasyDataBean>): Boolean {Log.d(TAG, " ===请求成功数据为=== " + list[0].imagePath)textView.text = list[0].titleGlide.with(this@MainActivity).load(list[0].imagePath).into(iv)return true}override fun onFailure(s: String): Boolean {return true}})
}

}

在这里插入图片描述

11.日志打印如下:

在这里插入图片描述

在这里插入图片描述

12.实现效果截图:

在这里插入图片描述

13.总结:

以上就是今天的内容,使用kts语法上传aar到JitPack


http://www.ppmy.cn/news/1452740.html

相关文章

c++实战篇(三) ——对socket通讯服务端与客户端的封装

前言 在前面几篇文章中我们介绍过一些有关于网络编程的相关知识,我们介绍了在tcp传输数据的时候发送缓冲区与接收缓冲区&#xff0c;我们介绍了在tcp发送与接收的过程中可能出现的分包与粘包的问题&#xff1a; c理论篇(一) ——浅谈tcp缓存与tcp的分包与粘包 我们介绍了在网络…

使用Qt for android 获取android PDA设备扫码数据

安装Qt Android 模块、Qt Creator、JDK8 Qt Creator版本太高不行&#xff0c;亲测最新版的会导致无法使用jdk 8&#xff08;2024-05-04 我的Qt版本是5.15.2&#xff0c;所以我选择了Qt Creator5.0.3进行开发 5.0.3 下载JDK8 JDK8 安装Qt Creator、JDK8 安装Qt Creator没什么…

SharedPreferences源码解析

前言 文章中部分地方SharedPreferences会简写成SP&#xff0c;先抛出几个问题&#xff1a; SP存储的是什么文件&#xff0c;存储在哪个位置&#xff1f;SP是线程安全的吗&#xff1f;SP是如何保证数据安全的&#xff1f;使用SP有哪些问题&#xff1f;SP会把数据加载到内存中吗…

Windows 下用 git clone ... 下载资料,资料下载到什么地方去了?

当你使用 git clone 命令在 Windows 系统上克隆一个仓库时&#xff0c;资料会被下载到你指定的目录中。如果你没有指定目录&#xff0c;那么资料会被下载到你当前所在的目录&#xff08;命令提示符或终端的当前工作目录&#xff09;中的一个新文件夹里&#xff0c;这个文件夹的…

webpack与vite

webpack 使用步骤&#xff1a; 初始化项目 pnpm init -y安装依赖webpack、webpack-cli在项目中创建src目录&#xff0c;然后编写代码&#xff08;index.js&#xff09;执行pnpm weboack来对代码进行打包&#xff08;打包后观察dist文件夹&#xff09; 配置古文件&#xff08;w…

Android4.4真机移植过程笔记(三)

如果文章字体看得不是很清楚&#xff0c;大家可以下载pdf文档查看&#xff0c;文档已上传&#xff5e;oo&#xff5e; 7、安装加密APK 需要修改文件如下&#xff1a; 相对Android4.2改动还是蛮大的&#xff0c;有些文件连路径都变了: //Android4.2 1、frameworks/native/libs…

【简单介绍下Lisp的学习历程】

&#x1f3a5;博主&#xff1a;程序员不想YY啊 &#x1f4ab;CSDN优质创作者&#xff0c;CSDN实力新星&#xff0c;CSDN博客专家 &#x1f917;点赞&#x1f388;收藏⭐再看&#x1f4ab;养成习惯 ✨希望本文对您有所裨益&#xff0c;如有不足之处&#xff0c;欢迎在评论区提出…

Atcoder Begginer Contest 352 A~E题解

文章目录 [A - AtCoder Line ](https://atcoder.jp/contests/abc352/tasks/abc352_a)[B - Typing](https://atcoder.jp/contests/abc352/tasks/abc352_b)[C - Standing On The Shoulders](https://atcoder.jp/contests/abc352/tasks/abc352_c)[D - Permutation Subsequence](ht…