Initial commit

This commit is contained in:
2020-08-31 00:06:26 +01:00
commit b0d2f9159c
115 changed files with 2826 additions and 0 deletions

22
settings.gradle.kts Normal file
View File

@@ -0,0 +1,22 @@
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")