mirror of
https://github.com/hmalik144/KotlinMultiplatformWeather.git
synced 2025-12-10 03:05:31 +00:00
23 lines
519 B
Plaintext
23 lines
519 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
if (requested.id.namespace == "com.android" || requested.id.name == "kotlin-android-extensions") {
|
|
useModule("com.android.tools.build:gradle:3.5.2")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
rootProject.name = "KotlinMultiplatformWeather"
|
|
|
|
include(":shared")
|
|
include(":androidApp")
|
|
|
|
enableFeaturePreview("GRADLE_METADATA")
|
|
|