Initial commit
This commit is contained in:
@@ -40,8 +40,5 @@ class ComposeMultiplatformConventionPlugin : Plugin<Project> {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user