We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96f8352 commit 7ae0415Copy full SHA for 7ae0415
1 file changed
app/build.gradle.kts
@@ -54,10 +54,23 @@ java {
54
targetCompatibility = JavaVersion.VERSION_17
55
}
56
57
+publishing {
58
+ publications {
59
+ register<MavenPublication>("release") {
60
+ groupId = "com.contextu.al"
61
+ artifactId = "guideblocks"
62
+ version = "1.0"
63
+ afterEvaluate {
64
+ from(components["release"])
65
+ }
66
67
68
+}
69
70
dependencies {
71
implementation("nl.dionsegijn:konfetti-xml:2.0.4")
72
val appcompat_version = "1.6.1"
73
+ implementation("androidx.constraintlayout:constraintlayout:2.2.0-alpha13")
74
75
implementation("androidx.appcompat:appcompat:$appcompat_version")
76
implementation("com.google.android.material:material:1.11.0")
0 commit comments