mirror of
https://github.com/NiciDieNase/chaosflix
synced 2024-11-23 12:53:08 +00:00
72 lines
2.5 KiB
Groovy
72 lines
2.5 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'android-maven'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
|
|
|
|
|
defaultConfig {
|
|
minSdkVersion 17
|
|
// minSdkVersion rootProject.ext.minSDK
|
|
targetSdkVersion rootProject.ext.targetSDK
|
|
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'
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
group="de.nicidienase.chaosflix"
|
|
version="1.1.0-SNAPSHOT"
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'com.android.support:appcompat-v7:26.1.0'
|
|
|
|
implementation 'com.android.support:multidex:1.0.2'
|
|
implementation "android.arch.lifecycle:runtime:1.0.3"
|
|
|
|
implementation "android.arch.lifecycle:extensions:${rootProject.ext.archCompVersion}"
|
|
annotationProcessor "android.arch.lifecycle:compiler:${rootProject.ext.archCompVersion}"
|
|
implementation "android.arch.lifecycle:common-java8:1.0.0-beta1"
|
|
implementation "android.arch.persistence.room:runtime:${rootProject.ext.archCompVersion}"
|
|
annotationProcessor "android.arch.persistence.room:compiler:${rootProject.ext.archCompVersion}"
|
|
kapt "android.arch.persistence.room:compiler:${rootProject.ext.archCompVersion}"
|
|
implementation "android.arch.persistence.room:rxjava2:${rootProject.ext.archCompVersion}"
|
|
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
|
|
implementation 'io.reactivex.rxjava2:rxjava:2.1.3'
|
|
|
|
implementation 'com.github.satyan:sugar:1.4'
|
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.2.0'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.2.0'
|
|
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.2.0'
|
|
implementation 'joda-time:joda-time:2.9.9'
|
|
implementation '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'
|
|
})
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
|
|
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
}
|