forked from GitHub-Mirror/riotX-android
94 lines
2.6 KiB
Groovy
94 lines
2.6 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'realm-android'
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath "io.realm:realm-gradle-plugin:5.7.0"
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
def arrow_version = "0.7.3"
|
|
def support_version = '28.0.0'
|
|
def moshi_version = '1.7.0'
|
|
def lifecycle_version = "1.1.1"
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.aar'])
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
implementation "com.android.support:appcompat-v7:$support_version"
|
|
implementation "com.android.support:recyclerview-v7:$support_version"
|
|
|
|
implementation "android.arch.lifecycle:extensions:$lifecycle_version"
|
|
kapt "android.arch.lifecycle:compiler:$lifecycle_version"
|
|
|
|
// Network
|
|
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
|
|
implementation 'com.squareup.retrofit2:converter-moshi:2.4.0'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
|
|
implementation 'com.jakewharton.retrofit:retrofit2-kotlin-coroutines-adapter:0.9.2'
|
|
implementation 'com.squareup.okhttp3:okhttp:3.10.0'
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:3.10.0'
|
|
implementation 'com.squareup.okio:okio:1.15.0'
|
|
implementation 'com.novoda:merlin:1.1.6'
|
|
implementation 'com.google.code.gson:gson:2.8.5'
|
|
implementation "com.squareup.moshi:moshi-adapters:$moshi_version"
|
|
kapt "com.squareup.moshi:moshi-kotlin-codegen:$moshi_version"
|
|
|
|
// Database
|
|
implementation 'com.github.Zhuinden:realm-monarchy:0.5.1'
|
|
kapt 'dk.ilios:realmfieldnameshelper:1.1.1'
|
|
|
|
// Paging
|
|
implementation "android.arch.paging:runtime:1.0.1"
|
|
|
|
// FP
|
|
implementation "io.arrow-kt:arrow-core:$arrow_version"
|
|
|
|
// DI
|
|
implementation "org.koin:koin-core:$koin_version"
|
|
implementation "org.koin:koin-core-ext:$koin_version"
|
|
|
|
// Logging
|
|
implementation 'com.jakewharton.timber:timber:4.7.1'
|
|
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
|
|
|
}
|