2025-04-13 00:51:32 +10:00
|
|
|
plugins {
|
|
|
|
|
// this is necessary to avoid the plugins to be loaded multiple times
|
|
|
|
|
// in each subproject's classloader
|
|
|
|
|
alias(libs.plugins.androidApplication) apply false
|
2026-03-25 21:10:54 +11:00
|
|
|
alias(libs.plugins.androidMultiplatformLibrary) apply false
|
2025-04-13 00:51:32 +10:00
|
|
|
alias(libs.plugins.composeMultiplatform) apply false
|
|
|
|
|
alias(libs.plugins.composeCompiler) apply false
|
|
|
|
|
alias(libs.plugins.kotlinJvm) apply false
|
|
|
|
|
alias(libs.plugins.kotlinMultiplatform) apply false
|
2025-12-13 20:31:19 +11:00
|
|
|
alias(libs.plugins.wire) apply false
|
2025-04-13 01:27:49 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
|
dependencies {
|
|
|
|
|
classpath(libs.secrets.gradle.plugin)
|
|
|
|
|
}
|
|
|
|
|
}
|