Skip to content

Commit

Permalink
fix jitpack
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaolewei committed Dec 25, 2023
1 parent a38e918 commit f2eb022
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@ plugins {
id 'org.jetbrains.kotlin.android'
}

publishing {
publications {
// 这个mavenJava可以随便填,只是一个任务名字而已
// MavenPublication必须有,这个是调用的任务类
mavenJava(MavenPublication) {
// 这里头是artifacts的配置信息,不填会采用默认的
groupId = 'org.gradle.sample'
artifactId = 'library'
version = '1.1'
}
}
}

android {
namespace 'com.zlw.audio_recorder'
compileSdk 33
Expand Down

0 comments on commit f2eb022

Please sign in to comment.