thunderbird-android/app/ui/legacy/build.gradle

109 lines
4.7 KiB
Groovy
Raw Normal View History

2018-07-01 11:39:01 +00:00
apply plugin: 'com.android.library'
apply plugin: 'org.jetbrains.kotlin.android'
apply plugin: 'org.jetbrains.kotlin.android.extensions'
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}"
api project(":app:ui:base")
debugImplementation project(":app:ui:setup")
2018-07-01 11:39:01 +00:00
implementation project(":app:core")
implementation project(":app:autodiscovery:api")
implementation project(":app:autodiscovery:providersxml")
2018-07-01 11:39:01 +00:00
implementation project(":mail:common")
//TODO: Remove AccountSetupIncoming's dependency on these
compileOnly project(":mail:protocols:imap")
compileOnly project(":mail:protocols:webdav")
2018-07-01 11:39:01 +00:00
implementation project(':plugins:openpgp-api-lib:openpgp-api')
2019-02-09 04:23:37 +00:00
implementation "androidx.appcompat:appcompat:${versions.androidxAppCompat}"
2020-04-15 19:32:44 +00:00
implementation "androidx.preference:preference:${versions.androidxPreference}"
implementation "com.takisoft.preferencex:preferencex:${versions.preferencesFix}"
implementation "com.takisoft.preferencex:preferencex-datetimepicker:${versions.preferencesFix}"
implementation "com.takisoft.preferencex:preferencex-colorpicker:${versions.preferencesFix}"
implementation "com.takisoft.preferencex:preferencex-ringtone:${versions.preferencesFix}"
2019-02-09 04:23:37 +00:00
implementation "androidx.recyclerview:recyclerview:${versions.androidxRecyclerView}"
2020-02-06 15:22:51 +00:00
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:${versions.androidxLifecycle}"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:${versions.androidxLifecycle}"
2019-04-06 19:08:12 +00:00
implementation "androidx.constraintlayout:constraintlayout:${versions.androidxConstraintLayout}"
implementation "androidx.cardview:cardview:${versions.androidxCardView}"
implementation "androidx.localbroadcastmanager:localbroadcastmanager:${versions.androidxLocalBroadcastManager}"
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
2019-05-19 21:49:09 +00:00
implementation "com.google.android.material:material:${versions.materialComponents}"
2021-01-21 06:42:27 +00:00
implementation "de.cketti.library.changelog:ckchangelog-core:2.0.0-beta01"
implementation "com.splitwise:tokenautocomplete:4.0.0-beta01"
implementation "de.cketti.safecontentresolver:safe-content-resolver-v21:1.0.0"
2020-01-19 01:54:56 +00:00
implementation 'com.mikepenz:materialdrawer:7.0.0'
implementation 'com.mikepenz:fontawesome-typeface:5.9.0.0-kotlin@aar'
implementation 'com.github.ByteHamster:SearchPreference:v2.0.0'
2020-01-19 01:55:25 +00:00
implementation 'com.mikepenz:fastadapter:4.1.2'
2020-04-15 19:14:18 +00:00
implementation 'de.hdodenhof:circleimageview:3.1.0'
2018-07-01 11:39:01 +00:00
2018-07-08 01:27:52 +00:00
implementation "commons-io:commons-io:${versions.commonsIo}"
implementation "androidx.core:core-ktx:${versions.androidxCore}"
2018-07-08 01:27:52 +00:00
implementation "net.jcip:jcip-annotations:1.0"
implementation "com.jakewharton.timber:timber:${versions.timber}"
implementation "org.apache.james:apache-mime4j-core:${versions.mime4j}"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:${versions.kotlinCoroutines}"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:${versions.kotlinCoroutines}"
2018-07-08 01:27:52 +00:00
2020-07-15 21:23:05 +00:00
implementation "com.github.bumptech.glide:glide:${versions.glide}"
annotationProcessor "com.github.bumptech.glide:compiler:${versions.glide}"
2018-07-01 11:39:01 +00:00
testImplementation project(':mail:testing')
testImplementation project(':app:storage')
testImplementation project(':app:testing')
2018-07-01 11:39:01 +00:00
testImplementation "org.robolectric:robolectric:${versions.robolectric}"
testImplementation "junit:junit:${versions.junit}"
testImplementation "com.google.truth:truth:${versions.truth}"
testImplementation "org.mockito:mockito-core:${versions.mockito}"
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:${versions.mockitoKotlin}"
2018-07-01 11:39:01 +00:00
testImplementation "org.koin:koin-test:${versions.koin}"
}
android {
compileSdkVersion buildConfig.compileSdk
buildToolsVersion buildConfig.buildTools
defaultConfig {
minSdkVersion buildConfig.minSdk
targetSdkVersion buildConfig.robolectricSdk
2018-07-01 11:39:01 +00:00
}
buildTypes {
debug {
def useNewSetupUi = project.hasProperty('k9mail.useNewSetupUi') ? project.property('k9mail.useNewSetupUi') : "false"
buildConfigField "boolean", "USE_NEW_SETUP_UI_FOR_ONBOARDING", useNewSetupUi
}
release {
buildConfigField "boolean", "USE_NEW_SETUP_UI_FOR_ONBOARDING", "false"
}
}
2018-07-01 11:39:01 +00:00
lintOptions {
abortOnError false
lintConfig file("$rootProject.projectDir/config/lint/lint.xml")
}
compileOptions {
sourceCompatibility javaVersion
targetCompatibility javaVersion
2018-07-01 11:39:01 +00:00
}
kotlinOptions {
jvmTarget = kotlinJvmVersion
}
2018-07-01 11:39:01 +00:00
testOptions {
unitTests {
includeAndroidResources = true
}
}
}
androidExtensions {
experimental = true
}