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 d20b84c commit d1fede9Copy full SHA for d1fede9
kotlin-sdk/build.gradle.kts
@@ -15,6 +15,7 @@ version = releaseVersion
15
16
kotlin {
17
androidTarget {
18
+ publishLibraryVariants("release")
19
compilations.all {
20
compileTaskProvider.configure {
21
compilerOptions {
@@ -80,8 +81,7 @@ android {
80
81
82
publishing {
83
publications {
- register<MavenPublication>("release") {
84
-
+ withType<MavenPublication>().configureEach {
85
pom {
86
name.set("OpenFeature Android SDK")
87
description.set(
@@ -126,10 +126,6 @@ publishing {
126
url.set("https://github.com/open-feature/kotlin-sdk")
127
}
128
129
130
- afterEvaluate {
131
- from(components["release"])
132
- }
133
134
135
0 commit comments