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-07 16:50:53 +03:00
ext.kethereum_version = '0.76.9'
2019-10-30 12:57:24 +03:00
repositories {
google()
jcenter()
}
dependencies {
2019-11-05 17:45:08 +03:00
classpath 'com.android.tools.build:gradle:3.5.2'
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
}