mirror of
https://github.com/NiciDieNase/chaosflix
synced 2025-02-17 05:28:24 +00:00
128 lines
No EOL
4 KiB
Groovy
128 lines
No EOL
4 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
String appName = "Chaosflix"
|
|
|
|
android {
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
|
defaultConfig {
|
|
applicationId "de.nicidienase.chaosflix"
|
|
minSdkVersion rootProject.ext.minSDK
|
|
targetSdkVersion rootProject.ext.targetSDK
|
|
manifestPlaceholders = [label: appName]
|
|
// odd for touch, even for leanback
|
|
versionCode 27
|
|
versionName "0.4"
|
|
// multiDexEnabled true
|
|
}
|
|
buildTypes {
|
|
debug {
|
|
applicationIdSuffix ".dev"
|
|
manifestPlaceholders = [label: appName + "-dev"]
|
|
minifyEnabled false
|
|
useProguard false
|
|
}
|
|
|
|
release {
|
|
useProguard true
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'),
|
|
'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
flavorDimensions "streaming"
|
|
|
|
productFlavors {
|
|
prod {}
|
|
mock {}
|
|
}
|
|
|
|
variantFilter { variant ->
|
|
if (variant.buildType.name == "mockRelease") {
|
|
setIgnore(true)
|
|
}
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
mockDebugCompile
|
|
prodDebugCompile
|
|
prodReleaseCompile
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':common')
|
|
implementation('com.mikepenz:aboutlibraries:6.1.1@aar') {
|
|
transitive = true
|
|
}
|
|
implementation 'com.github.medyo:android-about-page:1.2.2'
|
|
|
|
implementation "com.android.support:support-v4:${rootProject.ext.supportLibraryVersion}"
|
|
implementation "com.android.support:recyclerview-v7:${rootProject.ext.supportLibraryVersion}"
|
|
implementation "com.android.support:cardview-v7:${rootProject.ext.supportLibraryVersion}"
|
|
implementation "com.android.support.constraint:constraint-layout:${rootProject.ext.constraintLayoutVersion}"
|
|
implementation "com.android.support:design:${rootProject.ext.supportLibraryVersion}"
|
|
implementation "com.android.support:preference-v14:${rootProject.ext.supportLibraryVersion}"
|
|
|
|
|
|
implementation "com.android.support:mediarouter-v7:${rootProject.ext.supportLibraryVersion}"
|
|
implementation 'com.google.android.gms:play-services-cast-framework:16.1.0'
|
|
|
|
implementation("pl.droidsonroids:casty:1.0.8") {
|
|
exclude group: 'com.android.support', module: 'appcompat-v7'
|
|
}
|
|
|
|
implementation "com.google.android.exoplayer:exoplayer:r2.5.2"
|
|
|
|
implementation 'com.fasterxml.jackson.module:jackson-module-kotlin:2.9.0'
|
|
|
|
implementation 'com.squareup.picasso:picasso:2.5.2'
|
|
|
|
implementation 'net.opacapp:multiline-collapsingtoolbar:27.1.0'
|
|
implementation 'net.rdrei.android.dirchooser:library:3.2@aar'
|
|
// implementation 'com.gu:option:1.3'
|
|
implementation 'com.github.guardian:Option:-SNAPSHOT'
|
|
|
|
testImplementation 'org.mockito:mockito-core:2.11.0'
|
|
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.android.support.test.espresso:espresso-core:2.2.2', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
}
|
|
} |