mirror of
https://github.com/NiciDieNase/chaosflix
synced 2024-11-27 06:30:29 +00:00
50 lines
1.3 KiB
Groovy
50 lines
1.3 KiB
Groovy
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 25
|
||
|
buildToolsVersion "25.0.2"
|
||
|
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion 16
|
||
|
targetSdkVersion 25
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
|
|
||
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||
|
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
implementation 'com.android.support:appcompat-v7:25.4.0'
|
||
|
compile 'com.github.satyan:sugar:1.4'
|
||
|
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 'joda-time:joda-time:2.9.9'
|
||
|
compile 'org.joda:joda-convert:1.8'
|
||
|
|
||
|
testImplementation 'junit:junit:4.12'
|
||
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.1', {
|
||
|
exclude group: 'com.android.support', module: 'support-annotations'
|
||
|
})
|
||
|
|
||
|
}
|