mirror of
https://github.com/vector-im/element-android.git
synced 2024-11-16 02:05:06 +08:00
176 lines
6.2 KiB
Groovy
176 lines
6.2 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'realm-android'
|
|
apply plugin: 'okreplay'
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath "io.realm:realm-gradle-plugin:6.1.0"
|
|
}
|
|
}
|
|
|
|
androidExtensions {
|
|
experimental = true
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
testOptions.unitTests.includeAndroidResources = true
|
|
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
targetSdkVersion 29
|
|
versionCode 1
|
|
versionName "0.0.1"
|
|
// Multidex is useful for tests
|
|
multiDexEnabled true
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
buildConfigField "String", "GIT_SDK_REVISION", "\"${gitRevision()}\""
|
|
resValue "string", "git_sdk_revision", "\"${gitRevision()}\""
|
|
resValue "string", "git_sdk_revision_unix_date", "\"${gitRevisionUnixDate()}\""
|
|
resValue "string", "git_sdk_revision_date", "\"${gitRevisionDate()}\""
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
// Set to true to log privacy or sensible data, such as token
|
|
buildConfigField "boolean", "LOG_PRIVATE_DATA", project.property("vector.debugPrivateData")
|
|
// 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")
|
|
}
|
|
|
|
release {
|
|
buildConfigField "boolean", "LOG_PRIVATE_DATA", "false"
|
|
buildConfigField "okhttp3.logging.HttpLoggingInterceptor.Level", "OKHTTP_LOGGING_LEVEL", "okhttp3.logging.HttpLoggingInterceptor.Level.NONE"
|
|
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
adbOptions {
|
|
installOptions "-g"
|
|
}
|
|
|
|
lintOptions {
|
|
lintConfig file("lint.xml")
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|
|
|
|
static def gitRevision() {
|
|
def cmd = "git rev-parse --short=8 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()
|
|
}
|
|
|
|
dependencies {
|
|
|
|
def arrow_version = "0.8.2"
|
|
def moshi_version = '1.8.0'
|
|
def lifecycle_version = '2.2.0'
|
|
def arch_version = '2.1.0'
|
|
def coroutines_version = "1.3.2"
|
|
def markwon_version = '3.1.0'
|
|
def daggerVersion = '2.25.4'
|
|
def work_version = '2.3.3'
|
|
|
|
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"
|
|
|
|
implementation "androidx.appcompat:appcompat:1.1.0"
|
|
|
|
implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"
|
|
implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_version"
|
|
|
|
// Network
|
|
implementation 'com.squareup.retrofit2:retrofit:2.6.2'
|
|
implementation 'com.squareup.retrofit2:converter-moshi:2.6.2'
|
|
implementation 'com.squareup.okhttp3:okhttp:4.2.2'
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:4.2.2'
|
|
implementation "com.squareup.moshi:moshi-adapters:$moshi_version"
|
|
kapt "com.squareup.moshi:moshi-kotlin-codegen:$moshi_version"
|
|
|
|
implementation "ru.noties.markwon:core:$markwon_version"
|
|
|
|
// Image
|
|
implementation 'androidx.exifinterface:exifinterface:1.3.0-alpha01'
|
|
implementation 'id.zelory:compressor:3.0.0'
|
|
|
|
// Database
|
|
implementation 'com.github.Zhuinden:realm-monarchy:0.5.1'
|
|
kapt 'dk.ilios:realmfieldnameshelper:1.1.1'
|
|
|
|
// Work
|
|
implementation "androidx.work:work-runtime-ktx:$work_version"
|
|
|
|
// FP
|
|
implementation "io.arrow-kt:arrow-core:$arrow_version"
|
|
implementation "io.arrow-kt:arrow-instances-core:$arrow_version"
|
|
|
|
// 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.5.0'
|
|
kapt 'com.squareup.inject:assisted-inject-processor-dagger2:0.5.0'
|
|
|
|
// Logging
|
|
implementation 'com.jakewharton.timber:timber:4.7.1'
|
|
implementation 'com.facebook.stetho:stetho-okhttp3:1.5.1'
|
|
|
|
// Bus
|
|
implementation 'org.greenrobot:eventbus:3.1.1'
|
|
|
|
debugImplementation 'com.airbnb.okreplay:okreplay:1.5.0'
|
|
releaseImplementation 'com.airbnb.okreplay:noop:1.5.0'
|
|
androidTestImplementation 'com.airbnb.okreplay:espresso:1.5.0'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
testImplementation 'org.robolectric:robolectric:4.3'
|
|
//testImplementation 'org.robolectric:shadows-support-v4:3.0'
|
|
// Note: version sticks to 1.9.2 due to https://github.com/mockk/mockk/issues/281
|
|
testImplementation 'io.mockk:mockk:1.9.2.kotlin12'
|
|
testImplementation 'org.amshove.kluent:kluent-android:1.44'
|
|
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
|
|
|
|
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'
|
|
androidTestImplementation 'org.amshove.kluent:kluent-android:1.44'
|
|
// Note: version sticks to 1.9.2 due to https://github.com/mockk/mockk/issues/281
|
|
androidTestImplementation 'io.mockk:mockk-android:1.9.2.kotlin12'
|
|
androidTestImplementation "androidx.arch.core:core-testing:$arch_version"
|
|
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
|
|
|
|
}
|