This commit is contained in:
lunaticbum
2024-11-11 18:12:06 +09:00
parent f2311bd7f9
commit 256a13b7df
219 changed files with 12544 additions and 326 deletions
+16
View File
@@ -0,0 +1,16 @@
apply plugin: 'maven-publish'
// https://developer.android.com/build/publish-library/upload-library?hl=zh-cn#create-pub
publishing {
publications {
release(MavenPublication) {
groupId = 'com.github.hzw1199'
artifactId = 'AwesomeWebView-Android'
version = '2.1.0'
afterEvaluate {
from components.release
}
}
}
}