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 ab92ff4 commit fc8a258Copy full SHA for fc8a258
buildSrc/src/main/java/com/google/firebase/gradle/plugins/LibraryType.java
@@ -29,6 +29,11 @@ public String getFormat() {
29
}
30
31
public String getComponentName() {
32
+ // Due to the fact that multiple components are created for android libraries(1 per variant),
33
+ // the "android" component contains artifacts from all 3 variants for Kotlin libraries, which is
34
+ // invalid(bug in
35
+ // https://github.com/wupdigital/android-maven-publish ?).
36
+ // So we explicitly choose the "Release" variant for android libraries.
37
if (this == ANDROID) {
38
return name().toLowerCase() + "Release";
39
0 commit comments