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 c23fd1f commit 8b68320Copy full SHA for 8b68320
compose-loading/build.gradle
@@ -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 {
@@ -38,4 +39,18 @@ android {
38
39
dependencies {
40
implementation "androidx.compose.ui:ui:$compose_version"
41
implementation "androidx.compose.material3:material3:1.0.0-alpha15"
42
+}
43
+
44
+afterEvaluate {
45
+ publishing{
46
+ publications {
47
+ release(MavenPublication){
48
+ from components.release
49
50
+ groupId = 'com.github.commandiron'
51
+ artifactId = 'compose-loading'
52
+ version = '1.0'
53
+ }
54
55
56
jitpack.yml
@@ -0,0 +1,4 @@
+jdk:
+ - openjdk 11
+before install:
+ - ./scripts/prepareJitpackEnvironment.sh
0 commit comments