Files
korge-samples/integrations/android/build.gradle
Carlos Ballesteros Velasco d5626fc29d Add android integration sample (#38)
* Added Android integration sample https://github.com/korlibs/korge-next/pull/117 Thanks @pablocaviglia-baires !

* com.korge -> org.korge
2021-01-26 23:45:37 +01:00

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
}