printing/build.gradle.kts (19 lines of code) (raw):

plugins { id("richtext-android-library") id("org.jetbrains.dokka") } android { namespace = "com.zachklipp.richtext.ui.printing" } dependencies { implementation(Compose.foundation) implementation(Compose.tooling) // For slot table analysis. implementation(Compose.toolingData) implementation(Compose.activity) // TODO Migrate off this. implementation(Compose.material) } tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile::class.java).all { kotlinOptions { freeCompilerArgs = freeCompilerArgs + "-Xinline-classes" } }