Initial commit

This commit is contained in:
2025-09-22 17:36:09 -03:00
parent e47689d14f
commit 91a6202e26
3 changed files with 4 additions and 8 deletions

View File

@@ -40,8 +40,5 @@ class ComposeMultiplatformConventionPlugin : Plugin<Project> {
}
}
}
dependencies {
}
}
}

View File

@@ -11,14 +11,12 @@ internal fun Project.configureKotlinAndroid(
val moduleName = path.split(":").drop(2).joinToString(".")
namespace = if (moduleName.isNotEmpty()) "dev.carlosmartino.$moduleName" else "dev.carlosmartino.platform"
compileSdk = libs
.findVersion("android.compileSdk")
compileSdk = libs.findVersion("android.compileSdk")
.get()
.requiredVersion
.toInt()
defaultConfig {
minSdk = libs
.findVersion("android.minSdk")
minSdk = libs.findVersion("android.minSdk")
.get()
.requiredVersion
.toInt()