Skip to content

Commit 35d774f

Browse files
committed
v1.0.6
1 parent 61172cd commit 35d774f

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

foldable-activity/build.gradle

+11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
plugins {
22
id 'com.android.library'
33
id 'kotlin-android'
4+
id 'maven-publish'
45
}
56

67
android {
@@ -44,4 +45,14 @@ dependencies {
4445
testImplementation 'junit:junit:4.13.2'
4546
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
4647
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+
}
4758
}

jitpack.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
jdk:
2-
- openjdk11
2+
- openjdk11
3+
install:
4+
- ./gradlew build :lib:publishToMavenLocal

0 commit comments

Comments
 (0)