mirror of
https://github.com/ultrasonic/ultrasonic
synced 2025-01-22 21:19:57 +01:00
1caeaa9fe6
Signed-off-by: Yahor Berdnikau <egorr.berd@gmail.com>
54 lines
1.2 KiB
Groovy
54 lines
1.2 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion versions.compileSdk
|
|
buildToolsVersion versions.buildTools
|
|
|
|
defaultConfig {
|
|
applicationId "org.moire.ultrasonic"
|
|
minSdkVersion versions.minSdk
|
|
targetSdkVersion versions.targetSdk
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
test.java.srcDirs += 'src/test/kotlin'
|
|
}
|
|
|
|
packagingOptions {
|
|
exclude 'META-INF/LICENSE'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':menudrawer')
|
|
compile project(':pulltorefresh')
|
|
compile project(':library')
|
|
compile project(':subsonic-api')
|
|
|
|
compile androidSupport.support
|
|
compile androidSupport.design
|
|
|
|
compile other.kotlinStdlib
|
|
|
|
testCompile testing.junit
|
|
testCompile(testing.kotlinJunit) {
|
|
exclude module: "kotlin-stdlib"
|
|
}
|
|
testCompile(testing.mockitoKotlin) {
|
|
exclude module: "kotlin-stdlib"
|
|
exclude module: "kotlin-reflect"
|
|
}
|
|
testCompile(testing.kluent) {
|
|
exclude module: "kotlin-stdlib"
|
|
exclude module: "kotlin-reflect"
|
|
}
|
|
}
|