Nezteb
04/25/2019, 6:43 PMbuild.gradle into a separate file dependencies.gradle. Is it as simple as just copy-pasting the entire dependencies { ... } block into the new file and it just magically works?octylFractal
04/25/2019, 7:18 PMapply from: "dependencies.gradle" in order to include itNezteb
04/25/2019, 7:41 PM// See explanation of these two lines here: l<https://github.com/gradle/kotlin-dsl/issues/843#issuecomment-384988820>
val implementation by configurations
val testImplementation by configurationsgildor
04/26/2019, 2:03 AM