keycard-connect/build.gradle

31 lines
733 B
Groovy
Raw Normal View History

2019-10-30 12:57:24 +03:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.50'
2019-11-28 18:33:14 +09:00
ext.kethereum_version = '0.79.1'
2019-11-07 16:50:53 +03:00
2019-10-30 12:57:24 +03:00
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
2019-10-30 12:57:24 +03:00
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 {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}