We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61172cd commit 35d774fCopy full SHA for 35d774f
foldable-activity/build.gradle
@@ -1,6 +1,7 @@
1
plugins {
2
id 'com.android.library'
3
id 'kotlin-android'
4
+ id 'maven-publish'
5
}
6
7
android {
@@ -44,4 +45,14 @@ dependencies {
44
45
testImplementation 'junit:junit:4.13.2'
46
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
47
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
48
+}
49
+
50
+project.afterEvaluate {
51
+ publishing {
52
+ publications {
53
+ release(MavenPublication) {
54
+ from components.release
55
+ }
56
57
58
jitpack.yml
@@ -1,2 +1,4 @@
jdk:
- - openjdk11
+ - openjdk11
+install:
+ - ./gradlew build :lib:publishToMavenLocal
0 commit comments