mirror of
https://github.com/jlengrand/korge-samples.git
synced 2026-03-10 15:50:55 +00:00
33 lines
772 B
Groovy
33 lines
772 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
ext.kotlin_version = "1.4.30-RC"
|
|
ext.korge_version = "2.0.5"
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
mavenLocal()
|
|
}
|
|
dependencies {
|
|
classpath "com.android.tools.build:gradle:4.1.1"
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
mavenLocal()
|
|
google()
|
|
jcenter()
|
|
flatDir {
|
|
dirs 'libs'
|
|
}
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|