2022-02-24 22:55:56 +01:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
id 'kotlin-android'
|
|
|
|
}
|
|
|
|
|
|
|
|
applyCommonAndroidParameters(project)
|
|
|
|
applyCrashlyticsIfRelease(project)
|
|
|
|
|
|
|
|
android {
|
|
|
|
ndkVersion "25.0.8141415"
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "app.dapk.st"
|
2022-03-07 20:04:25 +01:00
|
|
|
def versionJson = new groovy.json.JsonSlurper().parseText(rootProject.file('version.json').text)
|
|
|
|
versionCode versionJson.code
|
|
|
|
versionName versionJson.name
|
2022-02-24 22:55:56 +01:00
|
|
|
resConfigs "en"
|
|
|
|
}
|
|
|
|
|
|
|
|
bundle {
|
|
|
|
abi.enableSplit true
|
|
|
|
density.enableSplit true
|
|
|
|
language.enableSplit true
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
debug {
|
2022-03-07 20:04:25 +01:00
|
|
|
versionNameSuffix =" [debug]"
|
2022-02-24 22:55:56 +01:00
|
|
|
matchingFallbacks = ['release']
|
|
|
|
signingConfig.storeFile rootProject.file("tools/debug.keystore")
|
|
|
|
}
|
|
|
|
release {
|
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'),
|
|
|
|
'proguard/app.pro',
|
|
|
|
"proguard/serializationx.pro",
|
|
|
|
"proguard/olm.pro"
|
2022-03-07 20:04:25 +01:00
|
|
|
|
|
|
|
// actual releases are signed with a different config
|
2022-02-24 22:55:56 +01:00
|
|
|
signingConfig = buildTypes.debug.signingConfig
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-17 20:50:40 +01:00
|
|
|
compileOptions {
|
|
|
|
coreLibraryDesugaringEnabled true
|
|
|
|
}
|
|
|
|
|
2022-02-24 22:55:56 +01:00
|
|
|
packagingOptions {
|
|
|
|
resources.excludes += "DebugProbesKt.bin"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-03-17 20:50:40 +01:00
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
|
|
|
|
|
2022-02-24 22:55:56 +01:00
|
|
|
implementation project(":features:home")
|
|
|
|
implementation project(":features:directory")
|
|
|
|
implementation project(":features:login")
|
|
|
|
implementation project(":features:settings")
|
|
|
|
implementation project(":features:notifications")
|
|
|
|
implementation project(":features:messenger")
|
|
|
|
implementation project(":features:profile")
|
|
|
|
implementation project(":features:navigator")
|
|
|
|
|
|
|
|
implementation project(':domains:store')
|
|
|
|
implementation project(":domains:android:core")
|
|
|
|
implementation project(":domains:android:tracking")
|
|
|
|
implementation project(":domains:android:push")
|
|
|
|
implementation project(":domains:android:work")
|
|
|
|
implementation project(":domains:android:imageloader")
|
|
|
|
implementation project(":domains:olm")
|
|
|
|
|
|
|
|
implementation project(":matrix:matrix")
|
|
|
|
implementation project(":matrix:matrix-http-ktor")
|
|
|
|
implementation project(":matrix:services:auth")
|
|
|
|
implementation project(":matrix:services:sync")
|
|
|
|
implementation project(":matrix:services:room")
|
|
|
|
implementation project(":matrix:services:push")
|
|
|
|
implementation project(":matrix:services:message")
|
|
|
|
implementation project(":matrix:services:device")
|
|
|
|
implementation project(":matrix:services:crypto")
|
|
|
|
implementation project(":matrix:services:profile")
|
|
|
|
|
|
|
|
implementation project(":core")
|
|
|
|
|
|
|
|
implementation Dependencies.google.androidxComposeUi
|
|
|
|
implementation Dependencies.mavenCentral.ktorAndroid
|
|
|
|
implementation Dependencies.mavenCentral.sqldelightAndroid
|
|
|
|
implementation Dependencies.mavenCentral.matrixOlm
|
|
|
|
|
|
|
|
implementation Dependencies.mavenCentral.kotlinSerializationJson
|
2022-04-26 00:09:35 +02:00
|
|
|
debugImplementation Dependencies.mavenCentral.leakCanary
|
2022-02-24 22:55:56 +01:00
|
|
|
}
|