We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9f9421 commit a80e604Copy full SHA for a80e604
2 files changed
audioControllerLibrary/build.gradle
@@ -44,6 +44,8 @@ dependencies {
44
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
45
}
46
47
+// Because the components are created only during the afterEvaluate phase, you must
48
+// configure your publications using the afterEvaluate() lifecycle method.
49
afterEvaluate {
50
publishing {
51
publications {
@@ -57,6 +59,15 @@ afterEvaluate {
57
59
artifactId = ''
58
60
version = '1.0.0'
61
62
+ // Creates a Maven publication called "debug"
63
+ debug(MavenPublication) {
64
+ // Applies the component for the debug bulid variant.
65
+ from components.debug
66
+
67
+ groupId = 'com.github.HyunJinNo'
68
+ artifactId = 'final-debug'
69
+ version = '1.0.0'
70
+ }
71
72
73
jitpack.yml
@@ -0,0 +1,2 @@
1
+jdk:
2
+ - openjdk11
0 commit comments