2020-04-03 10:12:58 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2020-05-30 18:04:34 +02:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2020-04-03 10:12:58 +02:00
|
|
|
|
2020-04-14 13:52:46 +02:00
|
|
|
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
|
|
|
def keystoreProperties = new Properties()
|
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
|
|
}
|
|
|
|
|
2020-04-03 10:12:58 +02:00
|
|
|
android {
|
2022-08-21 20:14:33 +02:00
|
|
|
compileSdkVersion 33
|
2020-04-03 10:12:58 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.simplemobiletools.smsmessenger"
|
2023-01-01 21:24:41 +01:00
|
|
|
minSdkVersion 23
|
2022-08-21 20:14:33 +02:00
|
|
|
targetSdkVersion 33
|
2023-01-12 16:24:16 +01:00
|
|
|
versionCode 70
|
|
|
|
versionName "5.17.2"
|
2020-04-14 13:52:46 +02:00
|
|
|
setProperty("archivesBaseName", "sms-messenger")
|
|
|
|
}
|
|
|
|
|
|
|
|
signingConfigs {
|
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
release {
|
|
|
|
keyAlias keystoreProperties['keyAlias']
|
|
|
|
keyPassword keystoreProperties['keyPassword']
|
|
|
|
storeFile file(keystoreProperties['storeFile'])
|
|
|
|
storePassword keystoreProperties['storePassword']
|
|
|
|
}
|
|
|
|
}
|
2020-04-03 10:12:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
}
|
|
|
|
release {
|
2022-02-10 21:32:30 +01:00
|
|
|
minifyEnabled true
|
2020-04-03 10:12:58 +02:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2020-04-14 13:52:46 +02:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
2020-04-03 10:12:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-19 19:38:08 +01:00
|
|
|
flavorDimensions "variants"
|
|
|
|
productFlavors {
|
|
|
|
core {}
|
|
|
|
fdroid {}
|
2022-07-01 18:30:07 +02:00
|
|
|
prepaid {}
|
2022-01-19 19:38:08 +01:00
|
|
|
}
|
|
|
|
|
2020-04-03 10:12:58 +02:00
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-01-12 16:08:41 +01:00
|
|
|
implementation 'com.github.SimpleMobileTools:Simple-Commons:449b24c6a4'
|
2022-02-26 19:25:26 +01:00
|
|
|
implementation 'org.greenrobot:eventbus:3.3.1'
|
2021-11-27 21:01:31 +01:00
|
|
|
implementation 'com.github.tibbi:IndicatorFastScroll:4524cd0b61'
|
2022-11-25 22:48:32 +01:00
|
|
|
implementation 'com.github.tibbi:android-smsmms:33fcaf94d9'
|
2020-07-27 22:37:11 +02:00
|
|
|
implementation "me.leolin:ShortcutBadger:1.1.22"
|
2020-12-23 15:04:13 +01:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2022-08-28 23:49:50 +02:00
|
|
|
implementation 'com.googlecode.ez-vcard:ez-vcard:0.11.3'
|
2022-12-07 21:10:34 +01:00
|
|
|
implementation 'androidx.lifecycle:lifecycle-process:2.5.1'
|
2020-05-30 18:04:34 +02:00
|
|
|
|
2022-08-24 22:15:49 +02:00
|
|
|
kapt "androidx.room:room-compiler:2.4.3"
|
|
|
|
implementation "androidx.room:room-runtime:2.4.3"
|
|
|
|
annotationProcessor "androidx.room:room-compiler:2.4.3"
|
2020-04-03 10:12:58 +02:00
|
|
|
}
|