chaosflix/leanback/build.gradle

95 lines
3.1 KiB
Groovy
Raw Normal View History

2018-09-09 15:26:33 +02:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
2018-09-11 21:43:25 +02:00
apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-android-extensions'
2018-12-17 20:08:59 +01:00
String appName = "Chaosflix"
2018-09-09 15:26:33 +02:00
android {
2018-09-09 15:56:56 +02:00
buildToolsVersion '27.0.3'
2018-09-09 15:26:33 +02:00
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
applicationId "de.nicidienase.chaosflix"
2018-12-17 20:08:59 +01:00
manifestPlaceholders = [label: appName]
2018-09-09 15:26:33 +02:00
minSdkVersion rootProject.ext.minSDK
targetSdkVersion rootProject.ext.targetSDK
// odd for touch, even for leanback
2018-12-12 00:03:49 +01:00
versionCode 14
versionName "0.4"
// multiDexEnabled true
2018-09-09 15:26:33 +02:00
}
buildTypes {
debug {
2018-12-17 20:08:59 +01:00
applicationIdSuffix ".dev"
manifestPlaceholders = [label: appName + "-dev"]
2018-09-09 15:26:33 +02:00
minifyEnabled false
useProguard false
}
release {
2018-12-22 20:50:44 +01:00
manifestPlaceholders = [label: appName]
minifyEnabled true
useProguard true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'),'proguard-rules.pro'
// signingConfig signingConfigs.config
2018-09-09 15:26:33 +02:00
}
}
2018-12-21 17:15:53 +01:00
flavorDimensions "streaming"
productFlavors {
prod {}
mock {}
}
2018-09-09 15:26:33 +02:00
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
}
dataBinding {
enabled = true
}
buildToolsVersion rootProject.ext.buildToolsVersion
2018-09-09 15:26:33 +02:00
}
2018-12-21 17:15:53 +01:00
configurations {
mockDebugCompile
prodDebugCompile
mockReleaseCompile
prodReleaseCompile
}
2018-09-09 15:26:33 +02:00
dependencies {
2018-09-10 23:03:24 +02:00
implementation project(':common')
2018-09-09 15:26:33 +02:00
implementation "com.android.support:cardview-v7:${rootProject.ext.supportLibraryVersion}"
implementation "com.android.support:design:${rootProject.ext.supportLibraryVersion}"
2018-09-10 23:03:24 +02:00
implementation "com.android.support:leanback-v17:${rootProject.ext.supportLibraryVersion}"
implementation "com.android.support:preference-leanback-v17:${rootProject.ext.supportLibraryVersion}"
2018-12-09 23:07:39 +01:00
implementation "com.android.support:recyclerview-v7:${rootProject.ext.supportLibraryVersion}"
2018-12-22 20:50:44 +01:00
implementation 'com.google.android.exoplayer:exoplayer:2.6.1'
implementation 'com.google.android.exoplayer:extension-leanback:2.6.1'
2018-12-10 23:04:43 +01:00
implementation 'com.github.bumptech.glide:glide:4.6.1'
2018-09-09 15:26:33 +02:00
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'
}