Browse Source

Build extended icons and material3 for all targets (#2133)

Fixes https://github.com/JetBrains/compose-jb/issues/2106

Also will add a task on CI
pull/2154/head
Igor Demin 2 years ago committed by GitHub
parent
commit
04c93ed537
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      compose/build.gradle.kts

8
compose/build.gradle.kts

@ -21,11 +21,11 @@ val mainComponents =
listOf(
ComposeComponent(":compose:animation:animation"),
ComposeComponent(":compose:animation:animation-core"),
ComposeComponent(":compose:animation:animation-graphics", supportedPlatforms = ComposePlatforms.JVM_BASED),
ComposeComponent(":compose:animation:animation-graphics"),
ComposeComponent(":compose:foundation:foundation"),
ComposeComponent(":compose:foundation:foundation-layout"),
ComposeComponent(":compose:material:material"),
ComposeComponent(":compose:material3:material3", supportedPlatforms = ComposePlatforms.JVM_BASED),
ComposeComponent(":compose:material3:material3"),
ComposeComponent(":compose:material:material-icons-core"),
ComposeComponent(":compose:material:material-ripple"),
ComposeComponent(":compose:runtime:runtime"),
@ -39,12 +39,12 @@ val mainComponents =
ComposeComponent(":compose:ui:ui-tooling", supportedPlatforms = ComposePlatforms.JVM_BASED),
ComposeComponent(":compose:ui:ui-tooling-preview", supportedPlatforms = ComposePlatforms.JVM_BASED),
ComposeComponent(":compose:ui:ui-unit"),
ComposeComponent(":compose:ui:ui-util", supportedPlatforms = ComposePlatforms.ALL),
ComposeComponent(":compose:ui:ui-util"),
)
val iconsComponents =
listOf(
ComposeComponent(":compose:material:material-icons-extended", supportedPlatforms = ComposePlatforms.JVM_BASED),
ComposeComponent(":compose:material:material-icons-extended"),
)
fun ComposePublishingTask.mainPublications() {

Loading…
Cancel
Save