2018-10-03 17:56:33 +02:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
2018-10-04 15:19:03 +02:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2020-12-16 00:46:52 +01:00
|
|
|
apply plugin: 'kotlin-parcelize'
|
2018-10-15 19:42:13 +02:00
|
|
|
apply plugin: 'realm-android'
|
2018-10-04 15:19:03 +02:00
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
2021-05-10 13:31:38 +02:00
|
|
|
mavenCentral()
|
2018-10-04 15:19:03 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2021-05-13 08:27:41 +02:00
|
|
|
classpath "io.realm:realm-gradle-plugin:10.5.0"
|
2018-10-04 15:19:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-03 17:56:33 +02:00
|
|
|
android {
|
2021-01-04 15:12:49 +01:00
|
|
|
compileSdkVersion 30
|
2018-12-11 15:36:09 +01:00
|
|
|
testOptions.unitTests.includeAndroidResources = true
|
2018-10-03 17:56:33 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
2020-06-18 14:18:40 +02:00
|
|
|
minSdkVersion 21
|
2021-01-04 15:12:49 +01:00
|
|
|
targetSdkVersion 30
|
2018-10-03 17:56:33 +02:00
|
|
|
versionCode 1
|
2019-06-21 11:13:16 +02:00
|
|
|
versionName "0.0.1"
|
2019-07-09 18:14:58 +02:00
|
|
|
// Multidex is useful for tests
|
|
|
|
multiDexEnabled true
|
2019-01-16 19:25:43 +01:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2018-10-03 17:56:33 +02:00
|
|
|
|
2020-06-03 17:58:49 +02:00
|
|
|
// The following argument makes the Android Test Orchestrator run its
|
|
|
|
// "pm clear" command after each test invocation. This command ensures
|
|
|
|
// that the app's state is completely cleared between tests.
|
|
|
|
testInstrumentationRunnerArguments clearPackageData: 'true'
|
|
|
|
|
2020-10-13 23:05:33 +02:00
|
|
|
// Seems that the build tools 4.1.0 does not generate BuildConfig.VERSION_NAME anymore.
|
|
|
|
// Add it manually here. We may remove this trick in the future
|
|
|
|
buildConfigField "String", "VERSION_NAME", "\"0.0.1\""
|
|
|
|
|
2019-06-21 11:13:16 +02:00
|
|
|
buildConfigField "String", "GIT_SDK_REVISION", "\"${gitRevision()}\""
|
2019-03-19 12:42:11 +01:00
|
|
|
resValue "string", "git_sdk_revision", "\"${gitRevision()}\""
|
|
|
|
resValue "string", "git_sdk_revision_unix_date", "\"${gitRevisionUnixDate()}\""
|
|
|
|
resValue "string", "git_sdk_revision_date", "\"${gitRevisionDate()}\""
|
2020-06-11 19:36:15 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
consumerProguardFiles 'proguard-rules.pro'
|
|
|
|
}
|
2018-10-03 17:56:33 +02:00
|
|
|
}
|
|
|
|
|
2020-06-03 17:58:49 +02:00
|
|
|
testOptions {
|
|
|
|
execution 'ANDROIDX_TEST_ORCHESTRATOR'
|
|
|
|
}
|
|
|
|
|
2018-10-03 17:56:33 +02:00
|
|
|
buildTypes {
|
2019-03-19 12:42:11 +01:00
|
|
|
debug {
|
|
|
|
// Set to true to log privacy or sensible data, such as token
|
2019-06-11 14:52:39 +02:00
|
|
|
buildConfigField "boolean", "LOG_PRIVATE_DATA", project.property("vector.debugPrivateData")
|
2019-03-19 12:42:11 +01:00
|
|
|
// Set to BODY instead of NONE to enable logging
|
2019-06-11 14:52:39 +02:00
|
|
|
buildConfigField "okhttp3.logging.HttpLoggingInterceptor.Level", "OKHTTP_LOGGING_LEVEL", "okhttp3.logging.HttpLoggingInterceptor.Level." + project.property("vector.httpLogLevel")
|
2019-03-19 12:42:11 +01:00
|
|
|
}
|
|
|
|
|
2018-10-03 17:56:33 +02:00
|
|
|
release {
|
2019-03-19 12:42:11 +01:00
|
|
|
buildConfigField "boolean", "LOG_PRIVATE_DATA", "false"
|
2020-12-08 11:36:12 +01:00
|
|
|
buildConfigField "okhttp3.logging.HttpLoggingInterceptor.Level", "OKHTTP_LOGGING_LEVEL", "okhttp3.logging.HttpLoggingInterceptor.Level.BASIC"
|
2018-10-03 17:56:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-12 21:15:01 +01:00
|
|
|
adbOptions {
|
|
|
|
installOptions "-g"
|
|
|
|
}
|
2019-04-03 12:04:24 +02:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
lintConfig file("lint.xml")
|
|
|
|
}
|
2019-07-09 18:14:58 +02:00
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
2019-09-27 11:42:46 +02:00
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
}
|
2020-04-24 13:37:29 +02:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
androidTest {
|
|
|
|
java.srcDirs += "src/sharedTest/java"
|
|
|
|
}
|
|
|
|
test {
|
|
|
|
java.srcDirs += "src/sharedTest/java"
|
|
|
|
}
|
|
|
|
}
|
2018-10-03 17:56:33 +02:00
|
|
|
}
|
|
|
|
|
2019-03-19 12:42:11 +01:00
|
|
|
static def gitRevision() {
|
2020-01-17 16:06:58 +01:00
|
|
|
def cmd = "git rev-parse --short=8 HEAD"
|
2019-03-19 12:42:11 +01: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 17:56:33 +02:00
|
|
|
dependencies {
|
2018-10-10 19:46:43 +02:00
|
|
|
|
2019-09-27 11:42:46 +02:00
|
|
|
def arrow_version = "0.8.2"
|
2021-04-02 09:19:53 +02:00
|
|
|
def moshi_version = '1.12.0'
|
2020-01-29 21:14:38 +01:00
|
|
|
def lifecycle_version = '2.2.0'
|
|
|
|
def arch_version = '2.1.0'
|
2019-09-27 13:49:55 +02:00
|
|
|
def markwon_version = '3.1.0'
|
2021-06-11 07:54:29 +02:00
|
|
|
def daggerVersion = '2.37'
|
2021-02-20 11:22:58 +01:00
|
|
|
def work_version = '2.5.0'
|
2021-02-20 00:21:11 +01:00
|
|
|
def retrofit_version = '2.9.0'
|
2018-10-10 19:46:43 +02:00
|
|
|
|
2018-10-03 17:56:33 +02:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
2020-10-06 12:33:40 +02:00
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlin_coroutines_version"
|
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlin_coroutines_version"
|
2018-10-03 17:56:33 +02:00
|
|
|
|
2021-05-19 08:20:33 +02:00
|
|
|
implementation "androidx.appcompat:appcompat:1.3.0"
|
2021-05-20 15:08:12 +02:00
|
|
|
implementation "androidx.core:core-ktx:1.5.0"
|
2018-10-04 15:19:03 +02:00
|
|
|
|
2019-01-16 19:25:43 +01:00
|
|
|
implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"
|
2020-01-29 21:14:38 +01:00
|
|
|
implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_version"
|
2018-10-16 15:52:30 +02:00
|
|
|
|
2018-10-04 15:19:03 +02:00
|
|
|
// Network
|
2020-07-17 20:16:27 +02:00
|
|
|
implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
|
|
|
|
implementation "com.squareup.retrofit2:converter-moshi:$retrofit_version"
|
2020-08-12 14:02:00 +02:00
|
|
|
|
2021-02-20 00:27:04 +01:00
|
|
|
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.9.1"))
|
2020-08-12 14:02:00 +02:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp'
|
|
|
|
implementation 'com.squareup.okhttp3:logging-interceptor'
|
2020-08-14 15:40:02 +02:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp-urlconnection'
|
2020-08-12 14:02:00 +02:00
|
|
|
|
2018-10-05 18:14:32 +02:00
|
|
|
implementation "com.squareup.moshi:moshi-adapters:$moshi_version"
|
|
|
|
kapt "com.squareup.moshi:moshi-kotlin-codegen:$moshi_version"
|
|
|
|
|
2019-05-27 18:08:29 +02:00
|
|
|
implementation "ru.noties.markwon:core:$markwon_version"
|
|
|
|
|
2019-09-26 15:04:07 +02:00
|
|
|
// Image
|
2021-02-20 00:21:40 +01:00
|
|
|
implementation 'androidx.exifinterface:exifinterface:1.3.2'
|
2019-09-26 15:04:07 +02:00
|
|
|
|
2018-10-18 11:16:02 +02:00
|
|
|
// Database
|
2020-11-03 16:53:30 +01:00
|
|
|
implementation 'com.github.Zhuinden:realm-monarchy:0.7.1'
|
2021-02-20 00:21:43 +01:00
|
|
|
kapt 'dk.ilios:realmfieldnameshelper:2.0.0'
|
2018-10-18 11:16:02 +02:00
|
|
|
|
2018-11-08 19:08:14 +01:00
|
|
|
// Work
|
2020-03-06 18:29:15 +01:00
|
|
|
implementation "androidx.work:work-runtime-ktx:$work_version"
|
2018-11-08 19:08:14 +01:00
|
|
|
|
2018-10-17 15:20:26 +02:00
|
|
|
// FP
|
2018-10-10 19:46:43 +02:00
|
|
|
implementation "io.arrow-kt:arrow-core:$arrow_version"
|
2018-11-06 16:35:06 +01:00
|
|
|
implementation "io.arrow-kt:arrow-instances-core:$arrow_version"
|
2018-10-10 19:46:43 +02:00
|
|
|
|
2019-05-16 10:23:57 +02:00
|
|
|
// olm lib is now hosted by jitpack: https://jitpack.io/#org.matrix.gitlab.matrix-org/olm
|
2021-05-25 10:48:20 +02:00
|
|
|
implementation 'org.matrix.gitlab.matrix-org:olm:3.2.4'
|
2019-05-16 10:23:57 +02:00
|
|
|
|
2018-10-04 15:19:03 +02:00
|
|
|
// DI
|
2019-06-14 16:32:23 +02:00
|
|
|
implementation "com.google.dagger:dagger:$daggerVersion"
|
|
|
|
kapt "com.google.dagger:dagger-compiler:$daggerVersion"
|
2018-10-04 15:19:03 +02:00
|
|
|
|
2018-10-08 17:52:45 +02:00
|
|
|
// Logging
|
|
|
|
implementation 'com.jakewharton.timber:timber:4.7.1'
|
2021-03-31 15:48:01 +02:00
|
|
|
implementation 'com.facebook.stetho:stetho-okhttp3:1.6.0'
|
2018-10-08 17:52:45 +02:00
|
|
|
|
2021-04-30 14:04:56 +02:00
|
|
|
// Video compression
|
2021-05-04 12:17:43 +02:00
|
|
|
implementation 'com.otaliastudios:transcoder:0.10.3'
|
2021-04-30 14:04:56 +02:00
|
|
|
|
2020-05-09 18:04:11 +02:00
|
|
|
// Phone number https://github.com/google/libphonenumber
|
2021-05-27 08:23:10 +02:00
|
|
|
implementation 'com.googlecode.libphonenumber:libphonenumber:8.12.24'
|
2020-05-09 18:04:11 +02:00
|
|
|
|
2021-02-19 22:52:31 +01:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
2021-02-21 00:12:11 +01:00
|
|
|
testImplementation 'org.robolectric:robolectric:4.5.1'
|
2019-03-18 18:16:27 +01:00
|
|
|
//testImplementation 'org.robolectric:shadows-support-v4:3.0'
|
2019-10-24 17:32:16 +02:00
|
|
|
// Note: version sticks to 1.9.2 due to https://github.com/mockk/mockk/issues/281
|
2021-03-17 08:08:12 +01:00
|
|
|
testImplementation 'io.mockk:mockk:1.11.0'
|
2021-02-20 00:18:28 +01:00
|
|
|
testImplementation 'org.amshove.kluent:kluent-android:1.65'
|
2020-10-06 12:33:40 +02:00
|
|
|
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlin_coroutines_version"
|
2020-04-24 13:37:29 +02:00
|
|
|
// Plant Timber tree for test
|
|
|
|
testImplementation 'net.lachlanmckee:timber-junit-rule:1.0.1'
|
2018-12-11 15:36:09 +01:00
|
|
|
|
2020-05-22 14:45:12 +02:00
|
|
|
kaptAndroidTest "com.google.dagger:dagger-compiler:$daggerVersion"
|
2020-10-06 15:44:30 +02:00
|
|
|
androidTestImplementation 'androidx.test:core:1.3.0'
|
|
|
|
androidTestImplementation 'androidx.test:runner:1.3.0'
|
|
|
|
androidTestImplementation 'androidx.test:rules:1.3.0'
|
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
2021-05-04 10:51:07 +02:00
|
|
|
androidTestImplementation 'org.amshove.kluent:kluent-android:1.65'
|
2021-03-17 08:07:15 +01:00
|
|
|
androidTestImplementation 'io.mockk:mockk-android:1.11.0'
|
2020-01-29 21:14:38 +01:00
|
|
|
androidTestImplementation "androidx.arch.core:core-testing:$arch_version"
|
2020-10-06 12:33:40 +02:00
|
|
|
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlin_coroutines_version"
|
2020-04-24 13:37:29 +02:00
|
|
|
// Plant Timber tree for test
|
|
|
|
androidTestImplementation 'net.lachlanmckee:timber-junit-rule:1.0.1'
|
2020-06-03 17:58:49 +02:00
|
|
|
|
2020-10-06 15:44:30 +02:00
|
|
|
androidTestUtil 'androidx.test:orchestrator:1.3.0'
|
2018-10-03 17:56:33 +02:00
|
|
|
}
|