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-12-09 00:06:34 +01:00
|
|
|
classpath "io.realm:realm-gradle-plugin:10.9.0"
|
2018-10-04 15:19:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-03 17:56:33 +02:00
|
|
|
android {
|
2018-12-11 15:36:09 +01:00
|
|
|
testOptions.unitTests.includeAndroidResources = true
|
2018-10-03 17:56:33 +02:00
|
|
|
|
2021-09-15 11:28:58 +02:00
|
|
|
compileSdk versions.compileSdk
|
|
|
|
|
2018-10-03 17:56:33 +02:00
|
|
|
defaultConfig {
|
2021-09-15 11:28:58 +02:00
|
|
|
minSdk versions.minSdk
|
|
|
|
targetSdk versions.targetSdk
|
2021-09-08 23:04:17 +02:00
|
|
|
|
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'
|
|
|
|
|
2021-12-20 15:35:09 +01:00
|
|
|
buildConfigField "String", "SDK_VERSION", "\"1.3.13\""
|
2020-10-13 23:05:33 +02:00
|
|
|
|
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 {
|
2021-11-10 19:36:28 +01:00
|
|
|
// Comment to run on Android 12
|
2020-06-03 17:58:49 +02:00
|
|
|
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
|
|
|
|
2019-07-09 18:14:58 +02:00
|
|
|
compileOptions {
|
2021-09-15 11:28:58 +02:00
|
|
|
sourceCompatibility versions.sourceCompat
|
|
|
|
targetCompatibility versions.targetCompat
|
2019-07-09 18:14:58 +02:00
|
|
|
}
|
2019-09-27 11:42:46 +02:00
|
|
|
|
|
|
|
kotlinOptions {
|
2021-09-02 09:50:34 +02:00
|
|
|
jvmTarget = "11"
|
2019-09-27 11:42:46 +02:00
|
|
|
}
|
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 {
|
2021-09-15 11:28:58 +02:00
|
|
|
implementation libs.jetbrains.coroutinesCore
|
|
|
|
implementation libs.jetbrains.coroutinesAndroid
|
2018-10-03 17:56:33 +02:00
|
|
|
|
2021-09-15 11:28:58 +02:00
|
|
|
implementation libs.androidx.appCompat
|
2021-09-15 19:22:52 +02:00
|
|
|
implementation libs.androidx.core
|
2018-10-04 15:19:03 +02:00
|
|
|
|
2021-11-09 16:39:43 +01:00
|
|
|
// Lifecycle
|
|
|
|
implementation libs.androidx.lifecycleCommon
|
|
|
|
implementation libs.androidx.lifecycleProcess
|
2018-10-16 15:52:30 +02:00
|
|
|
|
2018-10-04 15:19:03 +02:00
|
|
|
// Network
|
2021-09-17 13:58:44 +02:00
|
|
|
implementation libs.squareup.retrofit
|
|
|
|
implementation libs.squareup.retrofitMoshi
|
2020-08-12 14:02:00 +02:00
|
|
|
|
2021-11-23 00:10:17 +01:00
|
|
|
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.9.3"))
|
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
|
|
|
|
2021-09-17 13:58:44 +02:00
|
|
|
implementation libs.squareup.moshi
|
|
|
|
kapt libs.squareup.moshiKotlin
|
2018-10-05 18:14:32 +02:00
|
|
|
|
2021-09-17 13:58:44 +02:00
|
|
|
implementation libs.markwon.core
|
2019-05-27 18:08:29 +02:00
|
|
|
|
2019-09-26 15:04:07 +02:00
|
|
|
// Image
|
2021-09-15 19:22:52 +02:00
|
|
|
implementation libs.androidx.exifinterface
|
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-09-22 13:39:24 +02:00
|
|
|
|
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
|
2021-09-15 19:22:52 +02:00
|
|
|
implementation libs.androidx.work
|
2018-11-08 19:08:14 +01:00
|
|
|
|
2018-10-17 15:20:26 +02:00
|
|
|
// FP
|
2021-09-17 13:58:44 +02:00
|
|
|
implementation libs.arrow.core
|
|
|
|
implementation libs.arrow.instances
|
2018-10-10 19:46:43 +02:00
|
|
|
|
2021-12-07 14:45:48 +01:00
|
|
|
// olm lib is now hosted by maven at https://gitlab.matrix.org/api/v4/projects/27/packages/maven
|
|
|
|
implementation 'org.matrix.android:olm:3.2.7'
|
2019-05-16 10:23:57 +02:00
|
|
|
|
2018-10-04 15:19:03 +02:00
|
|
|
// DI
|
2021-09-15 11:28:58 +02:00
|
|
|
implementation libs.dagger.dagger
|
|
|
|
kapt libs.dagger.daggerCompiler
|
2018-10-04 15:19:03 +02:00
|
|
|
|
2018-10-08 17:52:45 +02:00
|
|
|
// Logging
|
2021-09-15 11:28:58 +02:00
|
|
|
implementation libs.jakewharton.timber
|
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-09-23 10:46:12 +02:00
|
|
|
implementation 'com.otaliastudios:transcoder:0.10.4'
|
2021-04-30 14:04:56 +02:00
|
|
|
|
2021-10-18 23:20:03 +02:00
|
|
|
// Exif data handling
|
|
|
|
implementation libs.apache.commonsImaging
|
|
|
|
|
2020-05-09 18:04:11 +02:00
|
|
|
// Phone number https://github.com/google/libphonenumber
|
2021-12-24 00:07:37 +01:00
|
|
|
implementation 'com.googlecode.libphonenumber:libphonenumber:8.12.40'
|
2020-05-09 18:04:11 +02:00
|
|
|
|
2021-09-15 19:22:52 +02:00
|
|
|
testImplementation libs.tests.junit
|
2021-12-02 00:07:55 +01:00
|
|
|
testImplementation 'org.robolectric:robolectric:4.7.3'
|
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-09-17 13:58:44 +02:00
|
|
|
testImplementation libs.mockk.mockk
|
|
|
|
testImplementation libs.tests.kluent
|
2021-09-15 11:28:58 +02:00
|
|
|
implementation libs.jetbrains.coroutinesAndroid
|
2020-04-24 13:37:29 +02:00
|
|
|
// Plant Timber tree for test
|
|
|
|
testImplementation 'net.lachlanmckee:timber-junit-rule:1.0.1'
|
2021-10-08 09:55:55 +02:00
|
|
|
// Transitively required for mocking realm as monarchy doesn't expose Rx
|
|
|
|
testImplementation libs.rx.rxKotlin
|
2018-12-11 15:36:09 +01:00
|
|
|
|
2021-09-15 11:28:58 +02:00
|
|
|
kaptAndroidTest libs.dagger.daggerCompiler
|
2021-09-17 13:58:44 +02:00
|
|
|
androidTestImplementation libs.androidx.testCore
|
|
|
|
androidTestImplementation libs.androidx.testRunner
|
|
|
|
androidTestImplementation libs.androidx.testRules
|
2021-09-15 19:22:52 +02:00
|
|
|
androidTestImplementation libs.androidx.junit
|
2021-09-17 13:58:44 +02:00
|
|
|
androidTestImplementation libs.androidx.espressoCore
|
|
|
|
androidTestImplementation libs.tests.kluent
|
|
|
|
androidTestImplementation libs.mockk.mockkAndroid
|
|
|
|
androidTestImplementation libs.androidx.coreTesting
|
2021-09-15 11:28:58 +02:00
|
|
|
androidTestImplementation libs.jetbrains.coroutinesAndroid
|
2020-04-24 13:37:29 +02:00
|
|
|
// Plant Timber tree for test
|
2021-09-17 13:58:44 +02:00
|
|
|
androidTestImplementation libs.tests.timberJunitRule
|
2020-06-03 17:58:49 +02:00
|
|
|
|
2021-09-23 21:24:16 +02:00
|
|
|
androidTestUtil libs.androidx.orchestrator
|
2018-10-03 17:56:33 +02:00
|
|
|
}
|