Rsedaikin
3 years ago
4 changed files with 65 additions and 46 deletions
@ -1,2 +1,4 @@ |
|||||||
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 |
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 |
||||||
kotlin.code.style=official |
kotlin.code.style=official |
||||||
|
kotlin.version=1.6.10 |
||||||
|
compose.version=1.0.1 |
||||||
|
@ -1,8 +1,11 @@ |
|||||||
pluginManagement { |
pluginManagement { |
||||||
repositories { |
repositories { |
||||||
// TODO: remove after new build is published |
|
||||||
mavenLocal() |
|
||||||
gradlePluginPortal() |
gradlePluginPortal() |
||||||
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") |
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") |
||||||
} |
} |
||||||
|
|
||||||
|
plugins { |
||||||
|
kotlin("jvm").version(extra["kotlin.version"] as String) |
||||||
|
id("org.jetbrains.compose").version(extra["compose.version"] as String) |
||||||
|
} |
||||||
} |
} |
Loading…
Reference in new issue