2018-10-03 23:56:33 +08:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
2018-10-04 21:19:03 +08:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2020-12-16 07:46:52 +08:00
|
|
|
apply plugin: 'kotlin-parcelize'
|
2018-10-16 01:42:13 +08:00
|
|
|
apply plugin: 'realm-android'
|
2022-04-08 23:17:27 +08:00
|
|
|
apply plugin: "org.jetbrains.dokka"
|
2018-10-04 21:19:03 +08:00
|
|
|
|
2022-06-14 22:56:16 +08:00
|
|
|
if (project.hasProperty("coverage")) {
|
|
|
|
apply plugin: 'jacoco'
|
|
|
|
}
|
|
|
|
|
2018-10-04 21:19:03 +08:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
2022-05-07 00:40:38 +08:00
|
|
|
// Do not use `mavenCentral()`, it prevents Dependabot from working properly
|
|
|
|
maven {
|
|
|
|
url 'https://repo1.maven.org/maven2'
|
|
|
|
}
|
2018-10-04 21:19:03 +08:00
|
|
|
}
|
|
|
|
dependencies {
|
2022-07-20 21:21:00 +08:00
|
|
|
classpath "io.realm:realm-gradle-plugin:10.11.1"
|
2018-10-04 21:19:03 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-21 22:34:36 +08:00
|
|
|
dokkaHtml {
|
|
|
|
dokkaSourceSets {
|
|
|
|
configureEach {
|
|
|
|
// Emit warnings about not documented members.
|
2022-05-04 20:56:11 +08:00
|
|
|
// reportUndocumented.set(true)
|
2022-04-27 22:31:53 +08:00
|
|
|
// Suppress legacy Riot's packages.
|
2022-04-21 22:49:07 +08:00
|
|
|
perPackageOption {
|
2022-04-27 22:31:53 +08:00
|
|
|
matchingRegex.set("org.matrix.android.sdk.internal.legacy.riot")
|
|
|
|
suppress.set(true)
|
|
|
|
}
|
|
|
|
perPackageOption {
|
|
|
|
matchingRegex.set("org.matrix.androidsdk.crypto.data")
|
2022-04-21 22:49:07 +08:00
|
|
|
suppress.set(true)
|
|
|
|
}
|
2022-04-27 22:52:45 +08:00
|
|
|
// List of files with module and package documentation
|
|
|
|
// https://kotlinlang.org/docs/reference/kotlin-doc.html#module-and-package-documentation
|
|
|
|
includes.from("./docs/modules.md", "./docs/packages.md")
|
2022-04-21 22:34:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-03 23:56:33 +08:00
|
|
|
android {
|
2022-10-17 15:14:28 +08:00
|
|
|
namespace "org.matrix.android.sdk"
|
|
|
|
|
2018-12-11 22:36:09 +08:00
|
|
|
testOptions.unitTests.includeAndroidResources = true
|
2018-10-03 23:56:33 +08:00
|
|
|
|
2021-09-15 17:28:58 +08:00
|
|
|
compileSdk versions.compileSdk
|
|
|
|
|
2018-10-03 23:56:33 +08:00
|
|
|
defaultConfig {
|
2021-09-15 17:28:58 +08:00
|
|
|
minSdk versions.minSdk
|
|
|
|
targetSdk versions.targetSdk
|
2021-09-09 05:04:17 +08:00
|
|
|
|
2019-07-10 00:14:58 +08:00
|
|
|
// Multidex is useful for tests
|
|
|
|
multiDexEnabled true
|
2019-01-17 02:25:43 +08:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2018-10-03 23:56:33 +08:00
|
|
|
|
2020-06-03 23:58:49 +08: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'
|
|
|
|
|
2023-01-10 23:24:24 +08:00
|
|
|
buildConfigField "String", "SDK_VERSION", "\"1.5.22\""
|
2020-10-14 05:05:33 +08:00
|
|
|
|
2019-06-21 17:13:16 +08:00
|
|
|
buildConfigField "String", "GIT_SDK_REVISION", "\"${gitRevision()}\""
|
2022-03-09 21:55:40 +08:00
|
|
|
buildConfigField "String", "GIT_SDK_REVISION_UNIX_DATE", "\"${gitRevisionUnixDate()}\""
|
|
|
|
buildConfigField "String", "GIT_SDK_REVISION_DATE", "\"${gitRevisionDate()}\""
|
2020-06-12 01:36:15 +08:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
consumerProguardFiles 'proguard-rules.pro'
|
|
|
|
}
|
2018-10-03 23:56:33 +08:00
|
|
|
}
|
|
|
|
|
2020-06-03 23:58:49 +08:00
|
|
|
testOptions {
|
2021-11-11 02:36:28 +08:00
|
|
|
// Comment to run on Android 12
|
2022-01-04 07:04:41 +08:00
|
|
|
// execution 'ANDROIDX_TEST_ORCHESTRATOR'
|
2020-06-03 23:58:49 +08:00
|
|
|
}
|
|
|
|
|
2018-10-03 23:56:33 +08:00
|
|
|
buildTypes {
|
2019-03-19 19:42:11 +08:00
|
|
|
debug {
|
2022-06-14 22:56:16 +08:00
|
|
|
if (project.hasProperty("coverage")) {
|
|
|
|
testCoverageEnabled = coverage.enableTestCoverage
|
|
|
|
}
|
2019-03-19 19:42:11 +08:00
|
|
|
// Set to true to log privacy or sensible data, such as token
|
2019-06-11 20:52:39 +08:00
|
|
|
buildConfigField "boolean", "LOG_PRIVATE_DATA", project.property("vector.debugPrivateData")
|
2019-03-19 19:42:11 +08:00
|
|
|
// Set to BODY instead of NONE to enable logging
|
2019-06-11 20:52:39 +08:00
|
|
|
buildConfigField "okhttp3.logging.HttpLoggingInterceptor.Level", "OKHTTP_LOGGING_LEVEL", "okhttp3.logging.HttpLoggingInterceptor.Level." + project.property("vector.httpLogLevel")
|
2019-03-19 19:42:11 +08:00
|
|
|
}
|
|
|
|
|
2018-10-03 23:56:33 +08:00
|
|
|
release {
|
2019-03-19 19:42:11 +08:00
|
|
|
buildConfigField "boolean", "LOG_PRIVATE_DATA", "false"
|
2020-12-08 18:36:12 +08:00
|
|
|
buildConfigField "okhttp3.logging.HttpLoggingInterceptor.Level", "OKHTTP_LOGGING_LEVEL", "okhttp3.logging.HttpLoggingInterceptor.Level.BASIC"
|
2018-10-03 23:56:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-04 18:20:20 +08:00
|
|
|
adbOptions {
|
|
|
|
installOptions "-g"
|
2022-01-07 17:03:54 +08:00
|
|
|
// timeOutInMs 350 * 1000
|
2018-12-13 04:15:01 +08:00
|
|
|
}
|
2019-04-03 18:04:24 +08:00
|
|
|
|
2019-07-10 00:14:58 +08:00
|
|
|
compileOptions {
|
2021-09-15 17:28:58 +08:00
|
|
|
sourceCompatibility versions.sourceCompat
|
|
|
|
targetCompatibility versions.targetCompat
|
2019-07-10 00:14:58 +08:00
|
|
|
}
|
2019-09-27 17:42:46 +08:00
|
|
|
|
|
|
|
kotlinOptions {
|
2021-09-02 15:50:34 +08:00
|
|
|
jvmTarget = "11"
|
2022-04-12 00:41:38 +08:00
|
|
|
freeCompilerArgs += [
|
|
|
|
// Disabled for now, there are too many errors. Could be handled in another dedicated PR
|
|
|
|
// '-Xexplicit-api=strict', // or warning
|
2022-05-10 22:07:24 +08:00
|
|
|
"-opt-in=kotlin.RequiresOptIn",
|
2022-05-10 22:05:46 +08:00
|
|
|
// Opt in for kotlinx.coroutines.FlowPreview
|
2022-05-10 22:07:24 +08:00
|
|
|
"-opt-in=kotlinx.coroutines.FlowPreview",
|
2022-04-12 00:41:38 +08:00
|
|
|
]
|
2019-09-27 17:42:46 +08:00
|
|
|
}
|
2020-04-24 19:37:29 +08:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
androidTest {
|
|
|
|
java.srcDirs += "src/sharedTest/java"
|
|
|
|
}
|
|
|
|
test {
|
|
|
|
java.srcDirs += "src/sharedTest/java"
|
|
|
|
}
|
|
|
|
}
|
2018-10-03 23:56:33 +08:00
|
|
|
}
|
|
|
|
|
2019-03-19 19:42:11 +08:00
|
|
|
static def gitRevision() {
|
2020-01-17 23:06:58 +08:00
|
|
|
def cmd = "git rev-parse --short=8 HEAD"
|
2019-03-19 19:42:11 +08: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 23:56:33 +08:00
|
|
|
dependencies {
|
2021-09-15 17:28:58 +08:00
|
|
|
implementation libs.jetbrains.coroutinesCore
|
|
|
|
implementation libs.jetbrains.coroutinesAndroid
|
2018-10-03 23:56:33 +08:00
|
|
|
|
2021-09-16 01:22:52 +08:00
|
|
|
implementation libs.androidx.core
|
2018-10-04 21:19:03 +08:00
|
|
|
|
2021-11-09 23:39:43 +08:00
|
|
|
// Lifecycle
|
|
|
|
implementation libs.androidx.lifecycleCommon
|
|
|
|
implementation libs.androidx.lifecycleProcess
|
2018-10-16 21:52:30 +08:00
|
|
|
|
2018-10-04 21:19:03 +08:00
|
|
|
// Network
|
2021-09-17 19:58:44 +08:00
|
|
|
implementation libs.squareup.retrofit
|
|
|
|
implementation libs.squareup.retrofitMoshi
|
2020-08-12 20:02:00 +08:00
|
|
|
|
2022-01-17 22:24:51 +08:00
|
|
|
// When version of okhttp is updated (current is 4.9.3), consider removing the workaround
|
|
|
|
// to force usage of Protocol.HTTP_1_1. Check the status of:
|
|
|
|
// - https://github.com/square/okhttp/issues/3278
|
|
|
|
// - https://github.com/square/okhttp/issues/4455
|
|
|
|
// - https://github.com/square/okhttp/issues/3146
|
2022-06-13 20:24:55 +08:00
|
|
|
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.10.0"))
|
2020-08-12 20:02:00 +08:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp'
|
|
|
|
implementation 'com.squareup.okhttp3:logging-interceptor'
|
|
|
|
|
2021-09-17 19:58:44 +08:00
|
|
|
implementation libs.squareup.moshi
|
2022-08-05 15:52:12 +08:00
|
|
|
implementation libs.squareup.moshiAdapters
|
2021-09-17 19:58:44 +08:00
|
|
|
kapt libs.squareup.moshiKotlin
|
2018-10-06 00:14:32 +08:00
|
|
|
|
2022-04-16 04:50:54 +08:00
|
|
|
api "com.atlassian.commonmark:commonmark:0.13.0"
|
2019-05-28 00:08:29 +08:00
|
|
|
|
2019-09-26 21:04:07 +08:00
|
|
|
// Image
|
2021-09-16 01:22:52 +08:00
|
|
|
implementation libs.androidx.exifinterface
|
2019-09-26 21:04:07 +08:00
|
|
|
|
2018-10-18 17:16:02 +08:00
|
|
|
// Database
|
2020-11-03 23:53:30 +08:00
|
|
|
implementation 'com.github.Zhuinden:realm-monarchy:0.7.1'
|
2021-09-22 19:39:24 +08:00
|
|
|
|
2021-02-20 07:21:43 +08:00
|
|
|
kapt 'dk.ilios:realmfieldnameshelper:2.0.0'
|
2018-10-18 17:16:02 +08:00
|
|
|
|
2022-01-20 00:52:02 +08:00
|
|
|
// Shared Preferences
|
|
|
|
implementation libs.androidx.preferenceKtx
|
|
|
|
|
2018-11-09 02:08:14 +08:00
|
|
|
// Work
|
2021-09-16 01:22:52 +08:00
|
|
|
implementation libs.androidx.work
|
2018-11-09 02:08:14 +08:00
|
|
|
|
2022-01-08 02:56:55 +08:00
|
|
|
// olm lib is now hosted in MavenCentral
|
2022-06-03 09:03:37 +08:00
|
|
|
implementation 'org.matrix.android:olm-sdk:3.2.12'
|
2019-05-16 16:23:57 +08:00
|
|
|
|
2018-10-04 21:19:03 +08:00
|
|
|
// DI
|
2021-09-15 17:28:58 +08:00
|
|
|
implementation libs.dagger.dagger
|
|
|
|
kapt libs.dagger.daggerCompiler
|
2018-10-04 21:19:03 +08:00
|
|
|
|
2018-10-08 23:52:45 +08:00
|
|
|
// Logging
|
2021-09-15 17:28:58 +08:00
|
|
|
implementation libs.jakewharton.timber
|
2021-03-31 21:48:01 +08:00
|
|
|
implementation 'com.facebook.stetho:stetho-okhttp3:1.6.0'
|
2018-10-08 23:52:45 +08:00
|
|
|
|
2021-04-30 20:04:56 +08:00
|
|
|
// Video compression
|
2021-09-23 16:46:12 +08:00
|
|
|
implementation 'com.otaliastudios:transcoder:0.10.4'
|
2021-04-30 20:04:56 +08:00
|
|
|
|
2021-10-19 05:20:03 +08:00
|
|
|
// Exif data handling
|
|
|
|
implementation libs.apache.commonsImaging
|
|
|
|
|
2022-08-08 17:21:34 +08:00
|
|
|
implementation libs.google.phonenumber
|
2020-05-10 00:04:11 +08:00
|
|
|
|
2021-09-16 01:22:52 +08:00
|
|
|
testImplementation libs.tests.junit
|
2019-10-24 23:32:16 +08:00
|
|
|
// Note: version sticks to 1.9.2 due to https://github.com/mockk/mockk/issues/281
|
2021-09-17 19:58:44 +08:00
|
|
|
testImplementation libs.mockk.mockk
|
|
|
|
testImplementation libs.tests.kluent
|
2022-03-09 19:18:46 +08:00
|
|
|
testImplementation libs.jetbrains.coroutinesTest
|
2020-04-24 19:37:29 +08:00
|
|
|
// Plant Timber tree for test
|
|
|
|
testImplementation 'net.lachlanmckee:timber-junit-rule:1.0.1'
|
2021-10-08 15:55:55 +08:00
|
|
|
// Transitively required for mocking realm as monarchy doesn't expose Rx
|
|
|
|
testImplementation libs.rx.rxKotlin
|
2018-12-11 22:36:09 +08:00
|
|
|
|
2021-09-15 17:28:58 +08:00
|
|
|
kaptAndroidTest libs.dagger.daggerCompiler
|
2021-09-17 19:58:44 +08:00
|
|
|
androidTestImplementation libs.androidx.testCore
|
|
|
|
androidTestImplementation libs.androidx.testRunner
|
|
|
|
androidTestImplementation libs.androidx.testRules
|
2021-09-16 01:22:52 +08:00
|
|
|
androidTestImplementation libs.androidx.junit
|
2021-09-17 19:58:44 +08:00
|
|
|
androidTestImplementation libs.androidx.espressoCore
|
|
|
|
androidTestImplementation libs.tests.kluent
|
|
|
|
androidTestImplementation libs.mockk.mockkAndroid
|
|
|
|
androidTestImplementation libs.androidx.coreTesting
|
2021-09-15 17:28:58 +08:00
|
|
|
androidTestImplementation libs.jetbrains.coroutinesAndroid
|
2022-09-27 20:37:23 +08:00
|
|
|
androidTestImplementation libs.jetbrains.coroutinesTest
|
|
|
|
|
2020-04-24 19:37:29 +08:00
|
|
|
// Plant Timber tree for test
|
2021-09-17 19:58:44 +08:00
|
|
|
androidTestImplementation libs.tests.timberJunitRule
|
2020-06-03 23:58:49 +08:00
|
|
|
|
2021-09-24 03:24:16 +08:00
|
|
|
androidTestUtil libs.androidx.orchestrator
|
2018-10-03 23:56:33 +08:00
|
|
|
}
|