blob: 42632bc9246b7444ac6c726f89cec1a6b858c4c8 [file] [log] [blame]
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "../../commonLocalRepo.gradle"
android {
compileSdkVersion rootProject.latestCompileSdk
testOptions {
unitTests.all {
systemProperty 'foo', 'bar'
}
}
}
dependencies {
implementation project(":util-lib")
implementation project(":javalib")
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$rootProject.kotlinVersion"
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.7.1'
testImplementation 'org.jdeferred:jdeferred-android-aar:1.2.3'
testImplementation 'commons-logging:commons-logging:1.1.1'
}