2014-12-19 22:05:58 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2018-05-23 17:45:46 +00:00
|
|
|
apply plugin: 'org.jetbrains.kotlin.android'
|
|
|
|
apply plugin: 'org.jetbrains.kotlin.android.extensions'
|
2019-11-26 20:37:40 +00:00
|
|
|
apply plugin: 'org.jlleitschuh.gradle.ktlint'
|
2014-12-19 22:05:58 +00:00
|
|
|
|
2016-05-28 12:26:56 +00:00
|
|
|
if (rootProject.testCoverage) {
|
|
|
|
apply plugin: 'jacoco'
|
2014-12-19 22:05:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-05-23 17:36:52 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}"
|
|
|
|
|
2018-07-01 11:39:01 +00:00
|
|
|
implementation project(":app:ui")
|
2018-06-21 13:12:50 +00:00
|
|
|
implementation project(":app:core")
|
2018-08-27 13:49:13 +00:00
|
|
|
implementation project(":app:storage")
|
2018-08-31 00:59:39 +00:00
|
|
|
implementation project(":app:crypto-openpgp")
|
2018-07-15 17:40:28 +00:00
|
|
|
implementation project(":backend:imap")
|
|
|
|
implementation project(":backend:pop3")
|
|
|
|
implementation project(":backend:webdav")
|
2018-02-17 03:05:09 +00:00
|
|
|
|
2019-02-09 04:23:37 +00:00
|
|
|
implementation "androidx.appcompat:appcompat:${versions.androidxAppCompat}"
|
2020-03-11 15:44:13 +00:00
|
|
|
implementation "androidx.core:core-ktx:${versions.coreKtx}"
|
|
|
|
implementation "com.takisoft.preferencex:preferencex:${versions.preferencesFix}"
|
2018-07-08 01:27:52 +00:00
|
|
|
implementation "com.jakewharton.timber:timber:${versions.timber}"
|
2020-05-07 09:36:08 +00:00
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:${versions.kotlinCoroutines}"
|
2018-07-08 01:27:52 +00:00
|
|
|
|
2018-06-29 14:12:20 +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}"
|
2020-01-19 01:31:15 +00:00
|
|
|
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:${versions.mockitoKotlin}"
|
2018-06-29 14:12:20 +00:00
|
|
|
testImplementation "org.jdom:jdom2:2.0.6"
|
|
|
|
testImplementation "org.koin:koin-test:${versions.koin}"
|
2014-12-19 22:05:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2018-05-23 17:36:52 +00:00
|
|
|
compileSdkVersion buildConfig.compileSdk
|
|
|
|
buildToolsVersion buildConfig.buildTools
|
2014-12-19 22:05:58 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2015-12-22 16:27:33 +00:00
|
|
|
applicationId "com.fsck.k9"
|
|
|
|
testApplicationId "com.fsck.k9.tests"
|
|
|
|
|
2020-05-08 08:39:57 +00:00
|
|
|
versionCode 27011
|
2020-05-08 09:07:03 +00:00
|
|
|
versionName '5.712-SNAPSHOT'
|
2015-12-22 16:27:33 +00:00
|
|
|
|
2018-05-23 17:36:52 +00:00
|
|
|
minSdkVersion buildConfig.minSdk
|
2019-11-17 00:28:52 +00:00
|
|
|
targetSdkVersion buildConfig.targetSdk
|
2014-12-20 06:39:08 +00:00
|
|
|
|
2015-12-29 16:42:25 +00:00
|
|
|
generatedDensities = ['mdpi', 'hdpi', 'xhdpi']
|
|
|
|
|
2019-02-09 04:23:37 +00:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2014-12-19 22:05:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
signingConfigs {
|
|
|
|
release
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
if (project.hasProperty('storeFile')) {
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
2015-01-03 07:29:45 +00:00
|
|
|
|
2017-11-10 21:54:31 +00:00
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
|
2015-01-03 07:29:45 +00:00
|
|
|
buildConfigField "boolean", "DEVELOPER_MODE", "false"
|
2014-12-19 22:05:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
debug {
|
2015-02-16 20:45:04 +00:00
|
|
|
applicationIdSuffix ".debug"
|
2018-05-23 18:09:33 +00:00
|
|
|
testCoverageEnabled rootProject.testCoverage
|
2015-01-03 07:29:45 +00:00
|
|
|
|
2018-08-27 13:49:13 +00:00
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
|
2015-01-03 07:29:45 +00:00
|
|
|
buildConfigField "boolean", "DEVELOPER_MODE", "true"
|
2014-12-19 22:05:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do not abort build if lint finds errors
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
2014-12-19 22:21:09 +00:00
|
|
|
lintConfig file("$rootProject.projectDir/config/lint/lint.xml")
|
2014-12-19 22:05:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
packagingOptions {
|
|
|
|
exclude 'META-INF/DEPENDENCIES'
|
|
|
|
exclude 'META-INF/LICENSE'
|
|
|
|
exclude 'META-INF/LICENSE.txt'
|
|
|
|
exclude 'META-INF/NOTICE'
|
|
|
|
exclude 'META-INF/NOTICE.txt'
|
2017-04-29 00:28:33 +00:00
|
|
|
exclude 'META-INF/README'
|
2014-12-20 06:39:08 +00:00
|
|
|
exclude 'LICENSE.txt'
|
2019-01-22 16:16:07 +00:00
|
|
|
exclude 'META-INF/*.kotlin_module'
|
2014-12-19 22:05:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
2019-11-13 15:10:14 +00:00
|
|
|
sourceCompatibility javaVersion
|
|
|
|
targetCompatibility javaVersion
|
2014-12-19 22:05:58 +00:00
|
|
|
}
|
2018-02-25 00:28:42 +00:00
|
|
|
|
2019-11-17 13:40:57 +00:00
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = kotlinJvmVersion
|
|
|
|
}
|
|
|
|
|
2018-02-25 00:28:42 +00:00
|
|
|
testOptions {
|
|
|
|
unitTests {
|
|
|
|
includeAndroidResources = true
|
|
|
|
}
|
|
|
|
}
|
2014-12-19 22:05:58 +00:00
|
|
|
}
|
|
|
|
|
2018-03-08 05:59:06 +00:00
|
|
|
androidExtensions {
|
|
|
|
experimental = true
|
|
|
|
}
|
|
|
|
|
2014-12-19 22:05:58 +00:00
|
|
|
if (project.hasProperty('keyAlias')) {
|
|
|
|
android.signingConfigs.release.keyAlias = keyAlias
|
|
|
|
}
|
|
|
|
if (project.hasProperty('keyPassword')) {
|
|
|
|
android.signingConfigs.release.keyPassword = keyPassword
|
|
|
|
}
|
|
|
|
if (project.hasProperty('storeFile')) {
|
|
|
|
android.signingConfigs.release.storeFile = file(storeFile)
|
|
|
|
}
|
|
|
|
if (project.hasProperty('storePassword')) {
|
|
|
|
android.signingConfigs.release.storePassword = storePassword
|
|
|
|
}
|