element-android/matrix-sdk-android/build.gradle

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