wowwallet/build.gradle

35 lines
645 B
Groovy
Raw Normal View History

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
google()
}
dependencies {
2019-03-06 08:46:52 -07:00
classpath 'com.android.tools.build:gradle:3.3.2'
}
}
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
apkName = 'monerujo'
2018-11-20 10:20:42 -07:00
okHttpVersion = '3.12.0'
junitVersion = '4.12'
mockitoVersion = '1.10.19'
2018-11-20 10:20:42 -07:00
timberVersion = '4.7.1'
supportVersion = '28.0.0'
}