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 {
|
2020-08-20 23:50:22 +02:00
|
|
|
compileSdkVersion 30
|
2020-04-03 10:12:58 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.simplemobiletools.smsmessenger"
|
2020-05-03 22:06:21 +02:00
|
|
|
minSdkVersion 22
|
2020-08-20 23:50:22 +02:00
|
|
|
targetSdkVersion 30
|
2021-10-20 11:47:15 +02:00
|
|
|
versionCode 38
|
|
|
|
versionName "5.10.3"
|
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 {
|
|
|
|
minifyEnabled false
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-11-15 22:52:51 +01:00
|
|
|
implementation 'com.github.SimpleMobileTools:Simple-Commons:3d04cf87bd'
|
2020-04-04 21:23:28 +02:00
|
|
|
implementation 'org.greenrobot:eventbus:3.2.0'
|
2020-04-10 20:06:14 +02:00
|
|
|
implementation 'com.klinkerapps:android-smsmms:5.2.6'
|
2021-02-15 18:56:12 +01:00
|
|
|
implementation 'com.github.tibbi:IndicatorFastScroll:c3de1d040a'
|
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'
|
2020-05-30 18:04:34 +02:00
|
|
|
|
2021-05-23 16:49:54 +02:00
|
|
|
kapt "androidx.room:room-compiler:2.3.0"
|
|
|
|
implementation "androidx.room:room-runtime:2.3.0"
|
|
|
|
annotationProcessor "androidx.room:room-compiler:2.3.0"
|
2020-04-03 10:12:58 +02:00
|
|
|
}
|