mirror of
https://github.com/NiciDieNase/chaosflix
synced 2024-11-23 12:53:08 +00:00
46 lines
1.4 KiB
Groovy
46 lines
1.4 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion "25.0.2"
|
|
defaultConfig {
|
|
applicationId "de.nicidienase.chaosflix"
|
|
minSdkVersion 21
|
|
targetSdkVersion 25
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled 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'
|
|
}
|
|
}
|
|
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.4.0'
|
|
|
|
compile 'com.squareup.retrofit2:retrofit:2.2.0'
|
|
compile 'com.squareup.retrofit2:converter-gson:2.2.0'
|
|
compile 'com.github.satyan:sugar:1.4'
|
|
compile 'com.jakewharton:butterknife:8.5.1'
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
androidTestCompile 'junit:junit:4.12'
|
|
androidTestCompile ('com.android.support.test:runner:0.5') {
|
|
exclude module: 'support-annotations'
|
|
}
|
|
// testCompile 'org.mockito:mockito-core:1.10.19'
|
|
}
|
|
|