forked from GitHub-Mirror/riotX-android
123 lines
4.1 KiB
Groovy
123 lines
4.1 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'realm-android'
|
|
apply plugin: 'okreplay'
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath "io.realm:realm-gradle-plugin:5.8.0"
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
testOptions.unitTests.includeAndroidResources = true
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
adbOptions {
|
|
installOptions "-g"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
def arrow_version = "0.8.0"
|
|
def support_version = '1.1.0-alpha01'
|
|
def moshi_version = '1.8.0'
|
|
def lifecycle_version = '2.0.0'
|
|
def coroutines_version = "1.0.1"
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.aar'])
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
|
|
|
|
implementation "androidx.appcompat:appcompat:$support_version"
|
|
implementation "androidx.recyclerview:recyclerview:$support_version"
|
|
|
|
implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"
|
|
kapt "androidx.lifecycle: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.okhttp3:okhttp:3.10.0'
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:3.10.0'
|
|
implementation 'com.novoda:merlin:1.1.6'
|
|
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 'androidx.paging:paging-runtime:2.0.0'
|
|
|
|
// Work
|
|
implementation "android.arch.work:work-runtime-ktx:1.0.0-beta02"
|
|
|
|
// FP
|
|
implementation "io.arrow-kt:arrow-core:$arrow_version"
|
|
implementation "io.arrow-kt:arrow-instances-core:$arrow_version"
|
|
implementation "io.arrow-kt:arrow-effects:$arrow_version"
|
|
implementation "io.arrow-kt:arrow-effects-instances:$arrow_version"
|
|
implementation "io.arrow-kt:arrow-integration-retrofit-adapter:$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'
|
|
|
|
debugImplementation 'com.airbnb.okreplay:okreplay:1.4.0'
|
|
releaseImplementation 'com.airbnb.okreplay:noop:1.4.0'
|
|
androidTestImplementation 'com.airbnb.okreplay:espresso:1.4.0'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
testImplementation 'org.robolectric:robolectric:4.0.2'
|
|
testImplementation "org.koin:koin-test:$koin_version"
|
|
testImplementation 'org.robolectric:shadows-support-v4:3.0'
|
|
testImplementation "io.mockk:mockk:1.8.13.kotlin13"
|
|
testImplementation 'org.amshove.kluent:kluent-android:1.44'
|
|
testImplementation "androidx.arch.core:core-testing:$lifecycle_version"
|
|
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
|
|
|
|
androidTestImplementation "org.koin:koin-test:$koin_version"
|
|
androidTestImplementation 'androidx.test:runner:1.1.1'
|
|
androidTestImplementation 'androidx.test:rules:1.1.1'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
|
|
androidTestImplementation 'org.amshove.kluent:kluent-android:1.44'
|
|
androidTestImplementation "io.mockk:mockk-android:1.8.13.kotlin13"
|
|
androidTestImplementation "androidx.arch.core:core-testing:$lifecycle_version"
|
|
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
|
|
|
|
|
|
}
|