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

184 lines
6.2 KiB
Groovy
Raw Normal View History

2018-10-03 18:56:33 +03:00
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
2020-12-16 01:46:52 +02:00
apply plugin: 'kotlin-parcelize'
2018-10-15 20:42:13 +03:00
apply plugin: 'realm-android'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "io.realm:realm-gradle-plugin:10.8.0"
}
}
2018-10-03 18:56:33 +03:00
android {
2018-12-11 16:36:09 +02:00
testOptions.unitTests.includeAndroidResources = true
2018-10-03 18:56:33 +03:00
2021-09-15 12:28:58 +03:00
compileSdk versions.compileSdk
2018-10-03 18:56:33 +03:00
defaultConfig {
2021-09-15 12:28:58 +03:00
minSdk versions.minSdk
targetSdk versions.targetSdk
2021-09-09 00:04:17 +03:00
2019-07-09 19:14:58 +03:00
// Multidex is useful for tests
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2018-10-03 18:56:33 +03:00
2020-06-03 18:58:49 +03: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-09-09 10:54:51 +03:00
buildConfigField "String", "SDK_VERSION", "\"1.2.2\""
buildConfigField "String", "GIT_SDK_REVISION", "\"${gitRevision()}\""
2019-03-19 13:42:11 +02: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 20:36:15 +03:00
defaultConfig {
consumerProguardFiles 'proguard-rules.pro'
}
2018-10-03 18:56:33 +03:00
}
2020-06-03 18:58:49 +03:00
testOptions {
execution 'ANDROIDX_TEST_ORCHESTRATOR'
}
2018-10-03 18:56:33 +03:00
buildTypes {
2019-03-19 13:42:11 +02:00
debug {
// Set to true to log privacy or sensible data, such as token
buildConfigField "boolean", "LOG_PRIVATE_DATA", project.property("vector.debugPrivateData")
2019-03-19 13:42:11 +02: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 13:42:11 +02:00
}
2018-10-03 18:56:33 +03:00
release {
2019-03-19 13:42:11 +02:00
buildConfigField "boolean", "LOG_PRIVATE_DATA", "false"
buildConfigField "okhttp3.logging.HttpLoggingInterceptor.Level", "OKHTTP_LOGGING_LEVEL", "okhttp3.logging.HttpLoggingInterceptor.Level.BASIC"
2018-10-03 18:56:33 +03:00
}
}
adbOptions {
installOptions "-g"
}
2019-04-03 13:04:24 +03:00
2019-07-09 19:14:58 +03:00
compileOptions {
2021-09-15 12:28:58 +03:00
sourceCompatibility versions.sourceCompat
targetCompatibility versions.targetCompat
2019-07-09 19:14:58 +03:00
}
kotlinOptions {
jvmTarget = "11"
}
sourceSets {
androidTest {
java.srcDirs += "src/sharedTest/java"
}
test {
java.srcDirs += "src/sharedTest/java"
}
}
2018-10-03 18:56:33 +03:00
}
2019-03-19 13:42:11 +02:00
static def gitRevision() {
2020-01-17 17:06:58 +02:00
def cmd = "git rev-parse --short=8 HEAD"
2019-03-19 13:42:11 +02: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 {
2021-09-15 12:28:58 +03:00
implementation libs.jetbrains.kotlinStdlib
implementation libs.jetbrains.coroutinesCore
implementation libs.jetbrains.coroutinesAndroid
2018-10-03 18:56:33 +03:00
2021-09-15 12:28:58 +03:00
implementation libs.androidx.appCompat
implementation libs.androidx.core
2021-09-15 12:28:58 +03:00
implementation "androidx.lifecycle:lifecycle-extensions:${versions.lifecycle}"
implementation "androidx.lifecycle:lifecycle-common-java8:${versions.lifecycle}"
// Network
implementation "com.squareup.retrofit2:retrofit:${versions.retrofit}"
implementation "com.squareup.retrofit2:converter-moshi:${versions.retrofit}"
2020-08-12 15:02:00 +03:00
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.9.1"))
2020-08-12 15:02:00 +03:00
implementation 'com.squareup.okhttp3:okhttp'
implementation 'com.squareup.okhttp3:logging-interceptor'
implementation 'com.squareup.okhttp3:okhttp-urlconnection'
2020-08-12 15:02:00 +03:00
2021-09-15 12:28:58 +03:00
implementation "com.squareup.moshi:moshi-adapters:${versions.moshi}"
kapt "com.squareup.moshi:moshi-kotlin-codegen:${versions.moshi}"
2021-09-15 12:28:58 +03:00
implementation "io.noties.markwon:core:${versions.markwon}"
// Image
implementation libs.androidx.exifinterface
2018-10-18 12:16:02 +03:00
// Database
implementation 'com.github.Zhuinden:realm-monarchy:0.7.1'
kapt 'dk.ilios:realmfieldnameshelper:2.0.0'
2018-10-18 12:16:02 +03:00
// Work
implementation libs.androidx.work
// FP
2021-09-15 12:28:58 +03:00
implementation "io.arrow-kt:arrow-core:${versions.arrow}"
implementation "io.arrow-kt:arrow-instances-core:${versions.arrow}"
2019-05-16 11:23:57 +03:00
// olm lib is now hosted by jitpack: https://jitpack.io/#org.matrix.gitlab.matrix-org/olm
2021-05-25 11:48:20 +03:00
implementation 'org.matrix.gitlab.matrix-org:olm:3.2.4'
2019-05-16 11:23:57 +03:00
// DI
2021-09-15 12:28:58 +03:00
implementation libs.dagger.dagger
kapt libs.dagger.daggerCompiler
// Logging
2021-09-15 12:28:58 +03:00
implementation libs.jakewharton.timber
implementation 'com.facebook.stetho:stetho-okhttp3:1.6.0'
2021-04-30 15:04:56 +03:00
// Video compression
implementation 'com.otaliastudios:transcoder:0.10.3'
2021-04-30 15:04:56 +03:00
// Phone number https://github.com/google/libphonenumber
implementation 'com.googlecode.libphonenumber:libphonenumber:8.12.32'
testImplementation libs.tests.junit
testImplementation 'org.robolectric:robolectric:4.6.1'
//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.12.0'
testImplementation 'org.amshove.kluent:kluent-android:1.68'
2021-09-15 12:28:58 +03:00
implementation libs.jetbrains.coroutinesAndroid
// Plant Timber tree for test
testImplementation 'net.lachlanmckee:timber-junit-rule:1.0.1'
2018-12-11 16:36:09 +02:00
2021-09-15 12:28:58 +03:00
kaptAndroidTest libs.dagger.daggerCompiler
androidTestImplementation "androidx.test:core:${versions.androidxTest}"
androidTestImplementation "androidx.test:runner:${versions.androidxTest}"
androidTestImplementation "androidx.test:rules:${versions.androidxTest}"
androidTestImplementation libs.androidx.junit
androidTestImplementation "androidx.test.espresso:espresso-core:${versions.espresso}"
androidTestImplementation 'org.amshove.kluent:kluent-android:1.68'
androidTestImplementation 'io.mockk:mockk-android:1.12.0'
2021-09-15 12:28:58 +03:00
androidTestImplementation "androidx.arch.core:core-testing:${versions.arch}"
androidTestImplementation libs.jetbrains.coroutinesAndroid
// Plant Timber tree for test
androidTestImplementation 'net.lachlanmckee:timber-junit-rule:1.0.1'
2020-06-03 18:58:49 +03:00
androidTestUtil 'androidx.test:orchestrator:1.4.0'
2018-10-03 18:56:33 +03:00
}