2018-10-03 18:56:33 +03:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
2018-10-04 16:19:03 +03:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2019-04-03 23:54:48 +03:00
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2018-10-15 20:42:13 +03:00
|
|
|
apply plugin: 'realm-android'
|
2018-12-12 23:15:01 +03:00
|
|
|
apply plugin: 'okreplay'
|
2018-10-04 16:19:03 +03:00
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2020-01-21 17:15:29 +03:00
|
|
|
classpath "io.realm:realm-gradle-plugin:6.1.0"
|
2018-10-04 16:19:03 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-03 23:54:48 +03:00
|
|
|
androidExtensions {
|
|
|
|
experimental = true
|
|
|
|
}
|
|
|
|
|
2018-10-03 18:56:33 +03:00
|
|
|
android {
|
|
|
|
compileSdkVersion 28
|
2018-12-11 17:36:09 +03:00
|
|
|
testOptions.unitTests.includeAndroidResources = true
|
2018-10-03 18:56:33 +03:00
|
|
|
|
|
|
|
defaultConfig {
|
2019-01-24 18:30:05 +03:00
|
|
|
minSdkVersion 16
|
2018-10-03 18:56:33 +03:00
|
|
|
targetSdkVersion 28
|
|
|
|
versionCode 1
|
2019-06-21 12:13:16 +03:00
|
|
|
versionName "0.0.1"
|
2019-07-09 19:14:58 +03:00
|
|
|
// Multidex is useful for tests
|
|
|
|
multiDexEnabled true
|
2019-01-16 21:25:43 +03:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2018-10-03 18:56:33 +03:00
|
|
|
|
2019-06-21 12:13:16 +03:00
|
|
|
buildConfigField "String", "GIT_SDK_REVISION", "\"${gitRevision()}\""
|
2019-03-19 14:42:11 +03:00
|
|
|
resValue "string", "git_sdk_revision", "\"${gitRevision()}\""
|
|
|
|
resValue "string", "git_sdk_revision_unix_date", "\"${gitRevisionUnixDate()}\""
|
|
|
|
resValue "string", "git_sdk_revision_date", "\"${gitRevisionDate()}\""
|
2018-10-03 18:56:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
2019-03-19 14:42:11 +03:00
|
|
|
|
|
|
|
debug {
|
|
|
|
// Set to true to log privacy or sensible data, such as token
|
2019-06-11 15:52:39 +03:00
|
|
|
buildConfigField "boolean", "LOG_PRIVATE_DATA", project.property("vector.debugPrivateData")
|
2019-03-19 14:42:11 +03:00
|
|
|
// Set to BODY instead of NONE to enable logging
|
2019-06-11 15:52:39 +03:00
|
|
|
buildConfigField "okhttp3.logging.HttpLoggingInterceptor.Level", "OKHTTP_LOGGING_LEVEL", "okhttp3.logging.HttpLoggingInterceptor.Level." + project.property("vector.httpLogLevel")
|
2019-03-19 14:42:11 +03:00
|
|
|
}
|
|
|
|
|
2018-10-03 18:56:33 +03:00
|
|
|
release {
|
2019-03-19 14:42:11 +03:00
|
|
|
buildConfigField "boolean", "LOG_PRIVATE_DATA", "false"
|
|
|
|
buildConfigField "okhttp3.logging.HttpLoggingInterceptor.Level", "OKHTTP_LOGGING_LEVEL", "okhttp3.logging.HttpLoggingInterceptor.Level.NONE"
|
|
|
|
|
2018-10-03 18:56:33 +03:00
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-12 23:15:01 +03:00
|
|
|
adbOptions {
|
|
|
|
installOptions "-g"
|
|
|
|
}
|
2019-04-03 13:04:24 +03:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
lintConfig file("lint.xml")
|
|
|
|
}
|
2019-07-09 19:14:58 +03:00
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
2019-09-27 12:42:46 +03:00
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
}
|
2018-10-03 18:56:33 +03:00
|
|
|
}
|
|
|
|
|
2019-03-19 14:42:11 +03:00
|
|
|
static def gitRevision() {
|
2020-01-17 18:06:58 +03:00
|
|
|
def cmd = "git rev-parse --short=8 HEAD"
|
2019-03-19 14:42:11 +03:00
|
|
|
return cmd.execute().text.trim()
|
|
|
|
}
|
|
|
|
|
|
|
|
static def gitRevisionUnixDate() {
|
|
|
|
def cmd = "git show -s --format=%ct HEAD^{commit}"
|
|
|
|
return cmd.execute().text.trim()
|
|
|
|
}
|
|
|
|
|
|
|
|
static def gitRevisionDate() {
|
|
|
|
def cmd = "git show -s --format=%ci HEAD^{commit}"
|
|
|
|
return cmd.execute().text.trim()
|
|
|
|
}
|
|
|
|
|
2018-10-03 18:56:33 +03:00
|
|
|
dependencies {
|
2018-10-10 20:46:43 +03:00
|
|
|
|
2019-09-27 12:42:46 +03:00
|
|
|
def arrow_version = "0.8.2"
|
2018-11-09 11:51:43 +03:00
|
|
|
def moshi_version = '1.8.0'
|
2020-01-29 23:14:38 +03:00
|
|
|
def lifecycle_version = '2.2.0'
|
|
|
|
def arch_version = '2.1.0'
|
2019-10-07 15:13:30 +03:00
|
|
|
def coroutines_version = "1.3.2"
|
2019-09-27 14:49:55 +03:00
|
|
|
def markwon_version = '3.1.0'
|
2020-01-29 23:14:38 +03:00
|
|
|
def daggerVersion = '2.25.4'
|
2020-03-09 12:50:49 +03:00
|
|
|
def work_version = '2.3.3'
|
2018-10-10 20:46:43 +03:00
|
|
|
|
2018-10-03 18:56:33 +03:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
2018-12-14 19:39:25 +03:00
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
|
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
|
2018-10-03 18:56:33 +03:00
|
|
|
|
2019-09-27 12:42:46 +03:00
|
|
|
implementation "androidx.appcompat:appcompat:1.1.0"
|
2018-10-04 16:19:03 +03:00
|
|
|
|
2019-01-16 21:25:43 +03:00
|
|
|
implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"
|
2020-01-29 23:14:38 +03:00
|
|
|
implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_version"
|
2018-10-16 16:52:30 +03:00
|
|
|
|
2018-10-04 16:19:03 +03:00
|
|
|
// Network
|
2019-09-27 14:49:55 +03:00
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.6.2'
|
|
|
|
implementation 'com.squareup.retrofit2:converter-moshi:2.6.2'
|
2019-10-11 11:10:16 +03:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.2.2'
|
|
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:4.2.2'
|
2018-10-05 19:14:32 +03:00
|
|
|
implementation "com.squareup.moshi:moshi-adapters:$moshi_version"
|
|
|
|
kapt "com.squareup.moshi:moshi-kotlin-codegen:$moshi_version"
|
|
|
|
|
2019-05-27 19:08:29 +03:00
|
|
|
implementation "ru.noties.markwon:core:$markwon_version"
|
|
|
|
|
2019-09-26 16:04:07 +03:00
|
|
|
// Image
|
2020-01-06 20:43:34 +03:00
|
|
|
implementation 'androidx.exifinterface:exifinterface:1.1.0'
|
2020-02-14 00:30:25 +03:00
|
|
|
implementation 'id.zelory:compressor:3.0.0'
|
2019-09-26 16:04:07 +03:00
|
|
|
|
2018-10-18 12:16:02 +03:00
|
|
|
// Database
|
|
|
|
implementation 'com.github.Zhuinden:realm-monarchy:0.5.1'
|
2018-10-26 16:12:38 +03:00
|
|
|
kapt 'dk.ilios:realmfieldnameshelper:1.1.1'
|
2018-10-18 12:16:02 +03:00
|
|
|
|
2018-11-08 21:08:14 +03:00
|
|
|
// Work
|
2020-03-06 20:29:15 +03:00
|
|
|
implementation "androidx.work:work-runtime-ktx:$work_version"
|
2018-11-08 21:08:14 +03:00
|
|
|
|
2018-10-17 16:20:26 +03:00
|
|
|
// FP
|
2018-10-10 20:46:43 +03:00
|
|
|
implementation "io.arrow-kt:arrow-core:$arrow_version"
|
2018-11-06 18:35:06 +03:00
|
|
|
implementation "io.arrow-kt:arrow-instances-core:$arrow_version"
|
2018-10-10 20:46:43 +03:00
|
|
|
|
2019-05-16 11:23:57 +03:00
|
|
|
// olm lib is now hosted by jitpack: https://jitpack.io/#org.matrix.gitlab.matrix-org/olm
|
|
|
|
implementation 'org.matrix.gitlab.matrix-org:olm:3.1.2'
|
|
|
|
|
2018-10-04 16:19:03 +03:00
|
|
|
// DI
|
2019-06-14 17:32:23 +03:00
|
|
|
implementation "com.google.dagger:dagger:$daggerVersion"
|
|
|
|
kapt "com.google.dagger:dagger-compiler:$daggerVersion"
|
2019-09-27 14:49:55 +03:00
|
|
|
compileOnly 'com.squareup.inject:assisted-inject-annotations-dagger2:0.5.0'
|
|
|
|
kapt 'com.squareup.inject:assisted-inject-processor-dagger2:0.5.0'
|
2018-10-04 16:19:03 +03:00
|
|
|
|
2018-10-08 18:52:45 +03:00
|
|
|
// Logging
|
|
|
|
implementation 'com.jakewharton.timber:timber:4.7.1'
|
2019-09-27 14:49:55 +03:00
|
|
|
implementation 'com.facebook.stetho:stetho-okhttp3:1.5.1'
|
2018-10-08 18:52:45 +03:00
|
|
|
|
2019-09-13 19:21:56 +03:00
|
|
|
// Bus
|
|
|
|
implementation 'org.greenrobot:eventbus:3.1.1'
|
|
|
|
|
2019-09-27 14:49:55 +03:00
|
|
|
debugImplementation 'com.airbnb.okreplay:okreplay:1.5.0'
|
|
|
|
releaseImplementation 'com.airbnb.okreplay:noop:1.5.0'
|
|
|
|
androidTestImplementation 'com.airbnb.okreplay:espresso:1.5.0'
|
2018-10-08 18:52:45 +03:00
|
|
|
|
2018-10-03 18:56:33 +03:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2019-09-27 14:49:55 +03:00
|
|
|
testImplementation 'org.robolectric:robolectric:4.3'
|
2019-03-18 20:16:27 +03:00
|
|
|
//testImplementation 'org.robolectric:shadows-support-v4:3.0'
|
2019-10-24 18:32:16 +03:00
|
|
|
// Note: version sticks to 1.9.2 due to https://github.com/mockk/mockk/issues/281
|
|
|
|
testImplementation 'io.mockk:mockk:1.9.2.kotlin12'
|
2018-12-11 17:36:09 +03:00
|
|
|
testImplementation 'org.amshove.kluent:kluent-android:1.44'
|
2018-12-14 21:23:49 +03:00
|
|
|
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
|
2018-12-11 17:36:09 +03:00
|
|
|
|
2019-07-02 10:39:45 +03:00
|
|
|
androidTestImplementation 'androidx.test:core:1.2.0'
|
|
|
|
androidTestImplementation 'androidx.test:runner:1.2.0'
|
|
|
|
androidTestImplementation 'androidx.test:rules:1.2.0'
|
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
2018-12-11 17:36:09 +03:00
|
|
|
androidTestImplementation 'org.amshove.kluent:kluent-android:1.44'
|
2019-10-24 18:32:16 +03:00
|
|
|
// Note: version sticks to 1.9.2 due to https://github.com/mockk/mockk/issues/281
|
|
|
|
androidTestImplementation 'io.mockk:mockk-android:1.9.2.kotlin12'
|
2020-01-29 23:14:38 +03:00
|
|
|
androidTestImplementation "androidx.arch.core:core-testing:$arch_version"
|
2018-12-14 21:23:49 +03:00
|
|
|
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
|
2018-12-11 17:36:09 +03:00
|
|
|
|
2018-10-03 18:56:33 +03:00
|
|
|
}
|