BayernMessenger/matrix-sdk-android/build.gradle

164 lines
5.8 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'
apply plugin: 'kotlin-android-extensions'
2018-10-15 17:42:13 +00:00
apply plugin: 'realm-android'
apply plugin: 'okreplay'
buildscript {
repositories {
jcenter()
}
dependencies {
2019-07-03 18:08:27 +00:00
classpath "io.realm:realm-gradle-plugin:5.12.0"
}
}
androidExtensions {
experimental = true
}
2018-10-03 15:56:33 +00:00
android {
compileSdkVersion 28
2018-12-11 14:36:09 +00:00
testOptions.unitTests.includeAndroidResources = true
2018-10-03 15:56:33 +00:00
defaultConfig {
minSdkVersion 16
2018-10-03 15:56:33 +00:00
targetSdkVersion 28
versionCode 1
versionName "0.0.1"
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
buildConfigField "String", "GIT_SDK_REVISION", "\"${gitRevision()}\""
2019-03-19 11:42:11 +00:00
resValue "string", "git_sdk_revision", "\"${gitRevision()}\""
resValue "string", "git_sdk_revision_unix_date", "\"${gitRevisionUnixDate()}\""
resValue "string", "git_sdk_revision_date", "\"${gitRevisionDate()}\""
2018-10-03 15:56:33 +00:00
}
buildTypes {
2019-03-19 11:42:11 +00: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 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.NONE"
2018-10-03 15:56:33 +00:00
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
adbOptions {
installOptions "-g"
}
2019-04-03 10:04:24 +00:00
lintOptions {
lintConfig file("lint.xml")
}
2019-07-09 16:14:58 +00:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2018-10-03 15:56:33 +00:00
}
2019-03-19 11:42:11 +00:00
static def gitRevision() {
def cmd = "git rev-parse --short HEAD"
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 {
def arrow_version = "0.8.0"
2019-07-02 07:39:45 +00:00
def support_version = '1.1.0-beta01'
2018-11-09 08:51:43 +00:00
def moshi_version = '1.8.0'
def lifecycle_version = '2.0.0'
def coroutines_version = "1.0.1"
def markwon_version = '3.0.0'
def daggerVersion = '2.23.1'
2018-10-03 15:56:33 +00:00
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
2018-10-03 15:56:33 +00:00
implementation "androidx.appcompat:appcompat:1.1.0-rc01"
implementation "androidx.recyclerview:recyclerview:1.1.0-beta01"
implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"
kapt "androidx.lifecycle:lifecycle-compiler:$lifecycle_version"
// Network
implementation 'com.squareup.retrofit2:retrofit:2.6.0'
implementation 'com.squareup.retrofit2:converter-moshi:2.4.0'
2019-07-02 07:39:45 +00:00
implementation 'com.squareup.okhttp3:okhttp:3.14.1'
implementation 'com.squareup.okhttp3:logging-interceptor:3.10.0'
2019-08-02 09:35:58 +00:00
implementation 'com.novoda:merlin:1.2.0'
implementation "com.squareup.moshi:moshi-adapters:$moshi_version"
kapt "com.squareup.moshi:moshi-kotlin-codegen:$moshi_version"
implementation "ru.noties.markwon:core:$markwon_version"
2018-10-18 09:16:02 +00:00
// Database
implementation 'com.github.Zhuinden:realm-monarchy:0.5.1'
2018-10-26 13:12:38 +00:00
kapt 'dk.ilios:realmfieldnameshelper:1.1.1'
2018-10-18 09:16:02 +00:00
// Work
2019-07-02 07:39:45 +00:00
implementation "androidx.work:work-runtime-ktx:2.1.0-rc01"
// FP
implementation "io.arrow-kt:arrow-core:$arrow_version"
implementation "io.arrow-kt:arrow-instances-core:$arrow_version"
2019-05-16 08:23:57 +00:00
// olm lib is now hosted by jitpack: https://jitpack.io/#org.matrix.gitlab.matrix-org/olm
implementation 'org.matrix.gitlab.matrix-org:olm:3.1.2'
// DI
implementation "com.google.dagger:dagger:$daggerVersion"
kapt "com.google.dagger:dagger-compiler:$daggerVersion"
compileOnly 'com.squareup.inject:assisted-inject-annotations-dagger2:0.4.0'
kapt 'com.squareup.inject:assisted-inject-processor-dagger2:0.4.0'
// Logging
implementation 'com.jakewharton.timber:timber:4.7.1'
implementation 'com.facebook.stetho:stetho-okhttp3:1.5.0'
debugImplementation 'com.airbnb.okreplay:okreplay:1.4.0'
releaseImplementation 'com.airbnb.okreplay:noop:1.4.0'
androidTestImplementation 'com.airbnb.okreplay:espresso:1.4.0'
2018-10-03 15:56:33 +00:00
testImplementation 'junit:junit:4.12'
2018-12-11 14:36:09 +00:00
testImplementation 'org.robolectric:robolectric:4.0.2'
//testImplementation 'org.robolectric:shadows-support-v4:3.0'
2018-12-11 14:36:09 +00:00
testImplementation "io.mockk:mockk:1.8.13.kotlin13"
testImplementation 'org.amshove.kluent:kluent-android:1.44'
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
2018-12-11 14:36:09 +00:00
2019-07-02 07:39:45 +00:00
androidTestImplementation 'androidx.test:core:1.2.0'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test:rules:1.2.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
2018-12-11 14:36:09 +00:00
androidTestImplementation 'org.amshove.kluent:kluent-android:1.44'
androidTestImplementation "io.mockk:mockk-android:1.8.13.kotlin13"
androidTestImplementation "androidx.arch.core:core-testing:$lifecycle_version"
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
2018-12-11 14:36:09 +00:00
2018-10-03 15:56:33 +00:00
}