We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6deebbe commit b8f4643Copy full SHA for b8f4643
buildSrc/private/src/main/kotlin/androidx/build/AndroidXImplPlugin.kt
@@ -751,7 +751,8 @@ abstract class AndroidXImplPlugin @Inject constructor() : Plugin<Project> {
751
BuildTypeAttr.ATTRIBUTE,
752
project.objects.named<BuildTypeAttr>("release"),
753
)
754
- it.outgoing.artifact(project.tasks.named("createFullJarAndroidMain"))
+ // disable, as it triggers android compilation during IDEA sync
755
+ if (!isJetBrainsFork(project)) it.outgoing.artifact(project.tasks.named("createFullJarAndroidMain"))
756
}
757
758
0 commit comments