Skip to content

Commit a71955c

Browse files
fix: remove duplication in publish-module.gradle
Context: Removed the artifacts { archives androidSourcesJar } block. The sources jar is still explicitly included in the publication via artifact androidSourcesJar, so nothing is lost — it just won't be registered twice, which was causing the duplicate artifact conflict during signing.
1 parent 99d0c69 commit a71955c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

scripts/publish-module.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ task androidSourcesJar(type: Jar) {
99
from android.sourceSets.main.kotlin.srcDirs
1010
}
1111

12-
artifacts {
13-
archives androidSourcesJar
14-
}
1512

1613
group = 'io.ionic.libs'
1714
version = LIB_VERSION

0 commit comments

Comments
 (0)