Initial commit
This commit is contained in:
@@ -6,7 +6,8 @@ ktlint_standard_max-line-length = 140
|
|||||||
ktlint_standard_multiline-expression-wrapping = disabled
|
ktlint_standard_multiline-expression-wrapping = disabled
|
||||||
ktlint_standard_backing-property-naming = disabled
|
ktlint_standard_backing-property-naming = disabled
|
||||||
ktlint_standard_function-naming = disabled
|
ktlint_standard_function-naming = disabled
|
||||||
ktlint_chain_method_rule_force_multiline_when_chain_operator_count_greater_or_equal_than = 5
|
ktlint_standard_chain-method-continuation = disabled
|
||||||
|
ktlint_chain_method_rule_force_multiline_when_chain_operator_count_greater_or_equal_than = 6
|
||||||
|
|
||||||
[**/build/**]
|
[**/build/**]
|
||||||
generated_code = true
|
generated_code = true
|
||||||
|
|||||||
@@ -40,8 +40,5 @@ class ComposeMultiplatformConventionPlugin : Plugin<Project> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,14 +11,12 @@ internal fun Project.configureKotlinAndroid(
|
|||||||
val moduleName = path.split(":").drop(2).joinToString(".")
|
val moduleName = path.split(":").drop(2).joinToString(".")
|
||||||
namespace = if (moduleName.isNotEmpty()) "dev.carlosmartino.$moduleName" else "dev.carlosmartino.platform"
|
namespace = if (moduleName.isNotEmpty()) "dev.carlosmartino.$moduleName" else "dev.carlosmartino.platform"
|
||||||
|
|
||||||
compileSdk = libs
|
compileSdk = libs.findVersion("android.compileSdk")
|
||||||
.findVersion("android.compileSdk")
|
|
||||||
.get()
|
.get()
|
||||||
.requiredVersion
|
.requiredVersion
|
||||||
.toInt()
|
.toInt()
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdk = libs
|
minSdk = libs.findVersion("android.minSdk")
|
||||||
.findVersion("android.minSdk")
|
|
||||||
.get()
|
.get()
|
||||||
.requiredVersion
|
.requiredVersion
|
||||||
.toInt()
|
.toInt()
|
||||||
|
|||||||
Reference in New Issue
Block a user