BayernMessenger/matrix-sdk-android/build.gradle

127 lines
4.0 KiB
Groovy
Raw Normal View History

2018-10-03 15:56:33 +00:00
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
2018-10-15 17:42:13 +00:00
apply plugin: 'realm-android'
apply plugin: 'okreplay'
buildscript {
repositories {
jcenter()
}
dependencies {
2018-12-13 10:00:50 +00:00
classpath "io.realm:realm-gradle-plugin:5.8.0"
}
}
repositories {
google()
jcenter()
}
2018-10-03 15:56:33 +00:00
android {
compileSdkVersion 28
2018-12-11 14:36:09 +00:00
testOptions.unitTests.includeAndroidResources = true
2018-10-03 15:56:33 +00:00
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'
}
}
adbOptions {
installOptions "-g"
}
2018-12-13 10:00:50 +00:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2018-10-03 15:56:33 +00:00
}
dependencies {
def arrow_version = "0.8.0"
def support_version = '28.0.0'
2018-11-09 08:51:43 +00:00
def moshi_version = '1.8.0'
def lifecycle_version = "1.1.1"
def coroutines_version = "1.0.1"
implementation fileTree(dir: 'libs', include: ['*.aar'])
2018-10-03 15:56:33 +00:00
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"
2018-10-03 15:56:33 +00:00
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.squareup.okhttp3:okhttp:3.10.0'
implementation 'com.squareup.okhttp3:logging-interceptor:3.10.0'
2018-12-13 10:00:50 +00:00
implementation 'com.squareup.okio:okio:1.16.0'
2018-10-17 11:59:21 +00:00
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"
2018-10-18 09:16:02 +00:00
// Database
implementation 'com.github.Zhuinden:realm-monarchy:0.5.1'
2018-10-26 13:12:38 +00:00
kapt 'dk.ilios:realmfieldnameshelper:1.1.1'
2018-10-18 09:16:02 +00:00
// Paging
implementation "android.arch.paging:runtime:1.0.1"
// Work
2018-12-13 10:00:50 +00:00
implementation "android.arch.work:work-runtime-ktx:1.0.0-alpha13"
// 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'
2018-10-03 15:56:33 +00:00
testImplementation 'junit:junit:4.12'
2018-12-11 14:36:09 +00:00
testImplementation 'org.robolectric:robolectric:4.0.2'
testImplementation "org.koin:koin-test:$koin_version"
2018-12-11 14:36:09 +00:00
testImplementation 'org.robolectric:shadows-support-v4:3.0'
testImplementation "io.mockk:mockk:1.8.13.kotlin13"
testImplementation 'org.amshove.kluent:kluent-android:1.44'
androidTestImplementation "org.koin:koin-test:$koin_version"
2018-10-03 15:56:33 +00:00
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation "com.android.support.test:rules:1.0.2"
2018-10-03 15:56:33 +00:00
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
2018-12-11 14:36:09 +00:00
androidTestImplementation 'org.amshove.kluent:kluent-android:1.44'
2018-10-03 15:56:33 +00:00
}