30 lines
703 B
Groovy
30 lines
703 B
Groovy
apply from: bootstrap.androidModule
|
|
|
|
android {
|
|
buildFeatures {
|
|
buildConfig = true
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api project(':core:domain')
|
|
api project(':core:subsonic-api')
|
|
api(other.picasso) {
|
|
exclude group: "com.android.support"
|
|
}
|
|
|
|
testImplementation testing.kotlinJunit
|
|
testImplementation testing.mockito
|
|
testImplementation testing.mockitoInline
|
|
testImplementation testing.mockitoKotlin
|
|
testImplementation testing.kluent
|
|
testImplementation testing.robolectric
|
|
}
|