mirror of
https://github.com/ultrasonic/ultrasonic
synced 2025-01-09 07:28:09 +01:00
cfa90e0a8d
Also changed how response is parsed, allowing base response has different models to parse. Signed-off-by: Yahor Berdnikau <egorr.berd@gmail.com>
48 lines
1.1 KiB
Groovy
48 lines
1.1 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'
|
|
}
|
|
}
|
|
|
|
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"
|
|
}
|
|
testCompile(testing.kluent) {
|
|
exclude module: "kotlin-stdlib"
|
|
}
|
|
}
|