We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4d4e5ab + 4b7dda8 commit 82a3b30Copy full SHA for 82a3b30
progress-view/build.gradle.kts
@@ -1,6 +1,7 @@
1
plugins {
2
id("com.android.library")
3
id("org.jetbrains.kotlin.android")
4
+ id("maven-publish")
5
}
6
7
android {
@@ -36,6 +37,18 @@ android {
36
37
38
39
40
+afterEvaluate {
41
+ publishing {
42
+ publications {
43
+ create<MavenPublication>("release") {
44
+ from(components["release"])
45
+ groupId = "br.com.nicolas"
46
+ artifactId = "progress-view"
47
+ }
48
49
50
+}
51
+
52
dependencies {
53
54
implementation("androidx.core:core-ktx:1.9.0")
0 commit comments