mirror of
https://github.com/NiciDieNase/chaosflix
synced 2024-11-23 12:53:08 +00:00
93 lines
3.1 KiB
Groovy
93 lines
3.1 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
String appName = "Chaosflix"
|
|
|
|
android {
|
|
buildToolsVersion '27.0.3'
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
|
defaultConfig {
|
|
applicationId "de.nicidienase.chaosflix"
|
|
manifestPlaceholders = [label: appName]
|
|
minSdkVersion rootProject.ext.minSDK
|
|
targetSdkVersion rootProject.ext.targetSDK
|
|
// odd for touch, even for leanback
|
|
versionCode 14
|
|
versionName "0.4"
|
|
// multiDexEnabled true
|
|
}
|
|
buildTypes {
|
|
debug {
|
|
applicationIdSuffix ".dev"
|
|
manifestPlaceholders = [label: appName + "-dev"]
|
|
minifyEnabled false
|
|
useProguard false
|
|
}
|
|
release {
|
|
manifestPlaceholders = [label: appName]
|
|
minifyEnabled true
|
|
useProguard true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'),'proguard-rules.pro'
|
|
// signingConfig signingConfigs.config
|
|
}
|
|
}
|
|
flavorDimensions "streaming"
|
|
productFlavors {
|
|
prod {}
|
|
mock {}
|
|
}
|
|
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
|
|
}
|
|
|
|
configurations {
|
|
mockDebugCompile
|
|
prodDebugCompile
|
|
mockReleaseCompile
|
|
prodReleaseCompile
|
|
}
|
|
|
|
|
|
dependencies {
|
|
implementation project(':common')
|
|
implementation "com.android.support:cardview-v7:${rootProject.ext.supportLibraryVersion}"
|
|
implementation "com.android.support:design:${rootProject.ext.supportLibraryVersion}"
|
|
implementation "com.android.support:leanback-v17:${rootProject.ext.supportLibraryVersion}"
|
|
implementation "com.android.support:preference-leanback-v17:${rootProject.ext.supportLibraryVersion}"
|
|
implementation "com.android.support:recyclerview-v7:${rootProject.ext.supportLibraryVersion}"
|
|
implementation 'com.google.android.exoplayer:exoplayer:2.6.1'
|
|
implementation 'com.google.android.exoplayer:extension-leanback:2.6.1'
|
|
implementation 'com.github.bumptech.glide:glide:4.6.1'
|
|
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'
|
|
}
|