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.
1 parent 26b72aa commit 8c4424aCopy full SHA for 8c4424a
jitpack.yml
@@ -0,0 +1,5 @@
1
+jdk:
2
+ - openjdk17
3
+before_install:
4
+ - sdk install java 17.0.7-open
5
+ - sdk use java 17.0.7-open
networkmodule/build.gradle.kts
@@ -10,6 +10,7 @@
10
plugins {
11
id("com.android.library")
12
id("org.jetbrains.kotlin.android")
13
+ id("maven-publish")
14
}
15
16
android {
@@ -40,6 +41,16 @@ android {
40
41
42
43
44
+publishing {
45
+ publications {
46
+ register<MavenPublication>("release") {
47
+ afterEvaluate {
48
+ from(components["release"])
49
+ }
50
51
52
+}
53
+
54
dependencies {
55
56
implementation("androidx.core:core-ktx:1.12.0")
0 commit comments