38 lines
1 KiB
Groovy
38 lines
1 KiB
Groovy
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
// NOTE: Always use fixed version codes not dynamic ones, e.g. 0.7.3 instead of 0.7.+, see README for more information
|
|
classpath 'com.android.tools.build:gradle:3.0.1'
|
|
classpath files('gradle-witness.jar')
|
|
// bintray dependency to satisfy dependency of openpgp-api lib
|
|
classpath 'com.novoda:bintray-release:0.8.0'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
}
|
|
|
|
// Ignore tests for external bouncycastle
|
|
project(':extern:bouncycastle') {
|
|
subprojects {
|
|
// Need to re-apply the plugin here otherwise the test property below can't be set.
|
|
apply plugin: 'java'
|
|
test.enabled = false
|
|
}
|
|
}
|
|
|
|
// SDK Version and Build Tools used by all subprojects
|
|
// See http://tools.android.com/tech-docs/new-build-system/tips#TOC-Controlling-Android-properties-of-all-your-modules-from-the-main-project.
|
|
ext {
|
|
compileSdkVersion = 27
|
|
buildToolsVersion = '27.0.3'
|
|
}
|