2015-07-26 17:03:28 +02:00
|
|
|
apply plugin: 'com.android.application'
|
2017-03-02 06:37:51 +01:00
|
|
|
apply plugin: 'kotlin-android'
|
2015-07-26 17:03:28 +02:00
|
|
|
|
|
|
|
android {
|
2017-01-14 21:44:28 +01:00
|
|
|
compileSdkVersion versions.compileSdk
|
|
|
|
buildToolsVersion versions.buildTools
|
2015-07-26 17:03:28 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
2015-07-26 18:15:07 +02:00
|
|
|
applicationId "org.moire.ultrasonic"
|
2017-01-14 21:44:28 +01:00
|
|
|
minSdkVersion versions.minSdk
|
|
|
|
targetSdkVersion versions.targetSdk
|
2015-07-26 17:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
|
|
}
|
|
|
|
}
|
2017-03-02 06:37:51 +01:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
test.java.srcDirs += 'src/test/kotlin'
|
|
|
|
}
|
2015-07-26 17:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(':menudrawer')
|
|
|
|
compile project(':pulltorefresh')
|
|
|
|
compile project(':library')
|
2017-03-02 06:37:51 +01:00
|
|
|
compile project(':subsonic-api')
|
2017-02-04 23:18:02 +01:00
|
|
|
|
|
|
|
compile androidSupport.support
|
|
|
|
compile androidSupport.design
|
2017-03-02 06:37:51 +01:00
|
|
|
|
|
|
|
compile kotlin.stdlib
|
|
|
|
|
|
|
|
testCompile testing.junit
|
|
|
|
testCompile testing.kotlinJunit
|
|
|
|
testCompile testing.mockitoKotlin
|
|
|
|
testCompile testing.kluent
|
2015-07-26 17:03:28 +02:00
|
|
|
}
|