1
mirror of https://github.com/m2049r/xmrwallet synced 2024-11-30 02:55:59 +01:00
xmrwallet/build.gradle

38 lines
756 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 {
2020-02-29 10:43:13 +01:00
classpath 'com.android.tools.build:gradle:3.6.1'
}
}
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
2019-03-09 00:02:58 +01:00
maven {
url "https://repository.mulesoft.org/nexus/content/repositories/public/"
}
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
apkName = 'monerujo'
2018-11-20 18:20:42 +01:00
okHttpVersion = '3.12.0'
junitVersion = '4.12'
mockitoVersion = '1.10.19'
2018-11-20 18:20:42 +01:00
timberVersion = '4.7.1'
supportVersion = '28.0.0'
}