2018-09-09 13:26:33 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
|
|
|
|
android {
|
2018-09-09 13:56:56 +00:00
|
|
|
buildToolsVersion '27.0.3'
|
2018-09-09 13:26:33 +00:00
|
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
|
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "de.nicidienase.chaosflix"
|
|
|
|
minSdkVersion rootProject.ext.minSDK
|
|
|
|
targetSdkVersion rootProject.ext.targetSDK
|
|
|
|
// odd for touch, even for leanback
|
|
|
|
versionCode 10
|
|
|
|
versionName "0.2.2"
|
|
|
|
multiDexEnabled true
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
|
|
minifyEnabled false
|
|
|
|
useProguard false
|
|
|
|
}
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
useProguard false
|
|
|
|
// shrinkResources true
|
|
|
|
// minifyEnabled true
|
|
|
|
useProguard false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'),
|
|
|
|
'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
packagingOptions {
|
|
|
|
exclude 'META-INF/ASL2.0'
|
|
|
|
exclude 'META-INF/LICENSE'
|
|
|
|
exclude 'META-INF/license.txt'
|
|
|
|
exclude 'META-INF/NOTICE'
|
|
|
|
exclude 'META-INF/notice.txt'
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
defaultConfig {
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2018-09-10 21:03:24 +00:00
|
|
|
implementation project(':common')
|
|
|
|
|
2018-09-09 13:26:33 +00:00
|
|
|
implementation "com.android.support:recyclerview-v7:${rootProject.ext.supportLibraryVersion}"
|
|
|
|
implementation "com.android.support:cardview-v7:${rootProject.ext.supportLibraryVersion}"
|
|
|
|
implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibraryVersion}"
|
|
|
|
implementation "com.android.support:design:${rootProject.ext.supportLibraryVersion}"
|
2018-09-09 13:56:56 +00:00
|
|
|
implementation 'com.android.support:multidex:1.0.3'
|
2018-09-09 13:26:33 +00:00
|
|
|
|
2018-09-10 21:03:24 +00:00
|
|
|
implementation "com.android.support:leanback-v17:${rootProject.ext.supportLibraryVersion}"
|
|
|
|
implementation "com.android.support:preference-leanback-v17:${rootProject.ext.supportLibraryVersion}"
|
|
|
|
|
2018-09-09 13:26:33 +00:00
|
|
|
implementation 'com.google.android.exoplayer:exoplayer:r2.5.2'
|
|
|
|
implementation 'com.github.bumptech.glide:glide:3.8.0'
|
|
|
|
|
|
|
|
debugImplementation 'com.facebook.stetho:stetho:1.4.2'
|
|
|
|
debugImplementation 'com.facebook.stetho:stetho-okhttp:1.4.2'
|
|
|
|
debugImplementation 'com.facebook.stetho:stetho-okhttp3:1.4.2'
|
|
|
|
androidTestImplementation('com.android.support.test:rules:0.5') {
|
|
|
|
exclude module: 'support-annotations'
|
|
|
|
}
|
|
|
|
androidTestImplementation('com.android.support.test:runner:0.5') {
|
|
|
|
exclude module: 'support-annotations'
|
|
|
|
}
|
|
|
|
androidTestImplementation 'com.android.support.test.uiautomator:uiautomator-v18:2.1.3'
|
|
|
|
androidTestImplementation 'org.hamcrest:hamcrest-library:1.3'
|
|
|
|
androidTestImplementation 'com.squareup.okhttp3:mockwebserver:3.6.0'
|
|
|
|
androidTestImplementation group: 'commons-io', name: 'commons-io', version: '2.4'
|
2018-09-09 13:56:56 +00:00
|
|
|
testImplementation 'org.mockito:mockito-core:2.11.0'
|
2018-09-09 13:26:33 +00:00
|
|
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
|
}
|
2018-09-09 13:56:56 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
2018-09-09 13:26:33 +00:00
|
|
|
}
|