mirror of
https://github.com/NiciDieNase/chaosflix
synced 2024-11-23 12:53:08 +00:00
83 lines
2.7 KiB
Groovy
83 lines
2.7 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'me.tatarka.retrolambda'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion "25.0.2"
|
|
defaultConfig {
|
|
applicationId "de.nicidienase.chaosflix"
|
|
minSdkVersion 22
|
|
targetSdkVersion 25
|
|
versionCode 1
|
|
versionName "1.0"
|
|
multiDexEnabled true
|
|
}
|
|
buildTypes {
|
|
debug {
|
|
minifyEnabled false
|
|
useProguard false
|
|
}
|
|
release {
|
|
shrinkResources true
|
|
minifyEnabled true
|
|
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 {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:leanback-v17:25.3.0'
|
|
compile 'com.android.support:appcompat-v7:25.3.0'
|
|
compile 'com.github.bumptech.glide:glide:3.7.0'
|
|
|
|
compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
|
|
compile 'io.reactivex.rxjava2:rxjava:2.0.1'
|
|
compile 'com.squareup.retrofit2:retrofit:2.2.0'
|
|
compile 'com.squareup.retrofit2:converter-gson:2.2.0'
|
|
compile 'com.squareup.retrofit2:adapter-rxjava2:2.2.0'
|
|
compile 'com.android.support:multidex:1.0.0'
|
|
|
|
compile 'com.google.android.exoplayer:exoplayer:r2.3.1'
|
|
compile 'com.github.satyan:sugar:1.4'
|
|
compile 'com.jakewharton:butterknife:8.5.1'
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'
|
|
|
|
debugCompile 'com.facebook.stetho:stetho:1.4.2'
|
|
debugCompile 'com.facebook.stetho:stetho-okhttp:1.4.2'
|
|
debugCompile 'com.facebook.stetho:stetho-okhttp3:1.4.2'
|
|
|
|
androidTestCompile ('com.android.support.test:rules:0.5') {
|
|
exclude module: 'support-annotations'
|
|
}
|
|
androidTestCompile ('com.android.support.test:runner:0.5') {
|
|
exclude module: 'support-annotations'
|
|
}
|
|
androidTestCompile 'org.hamcrest:hamcrest-library:1.3'
|
|
androidTestCompile 'com.squareup.okhttp3:mockwebserver:3.6.0'
|
|
androidTestCompile group: 'commons-io', name: 'commons-io', version: '2.0.1'
|
|
testCompile 'org.mockito:mockito-core:1.10.19'
|
|
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
}
|
|
}
|
|
|