mirror of
https://github.com/NiciDieNase/chaosflix
synced 2024-11-23 21:03:12 +00:00
66 lines
2 KiB
Groovy
66 lines
2 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'android-maven'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
android {
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
|
|
|
|
|
defaultConfig {
|
|
minSdkVersion rootProject.ext.minSDK
|
|
targetSdkVersion rootProject.ext.targetSDK
|
|
versionCode 1
|
|
versionName "1.3.2"
|
|
|
|
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.3.2-SNAPSHOT"
|
|
|
|
dependencies {
|
|
api 'com.android.support:appcompat-v7:27.0.2'
|
|
|
|
api "android.arch.lifecycle:extensions:${rootProject.ext.archCompVersion}"
|
|
kapt "android.arch.lifecycle:compiler:${rootProject.ext.archCompVersion}"
|
|
api "android.arch.lifecycle:common-java8:1.0.0"
|
|
|
|
api "android.arch.persistence.room:runtime:${rootProject.ext.archCompVersion}"
|
|
api "android.arch.persistence.room:rxjava2:${rootProject.ext.archCompVersion}"
|
|
kapt "android.arch.persistence.room:compiler:${rootProject.ext.archCompVersion}"
|
|
|
|
api 'io.reactivex.rxjava2:rxjava:2.1.4'
|
|
|
|
api 'com.squareup.retrofit2:retrofit:2.3.0'
|
|
api 'com.squareup.retrofit2:adapter-rxjava2:2.3.0'
|
|
api 'com.squareup.retrofit2:converter-jackson:2.2.0'
|
|
|
|
api 'com.fasterxml.jackson.module:jackson-module-kotlin:2.9.0'
|
|
|
|
testImplementation "org.mockito:mockito-core:2.11.0"
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.1', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
})
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
|
|
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
}
|