Simple-SMS-Messenger/app/build.gradle

76 lines
2.1 KiB
Groovy
Raw Normal View History

2020-04-03 10:12:58 +02:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
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-04-12 09:45:18 +02:00
compileSdkVersion 31
2020-04-03 10:12:58 +02:00
defaultConfig {
applicationId "com.simplemobiletools.smsmessenger"
minSdkVersion 22
2022-04-12 09:45:18 +02:00
targetSdkVersion 31
2022-05-03 14:53:58 +02:00
versionCode 54
versionName "5.13.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 {}
}
2020-04-03 10:12:58 +02:00
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
}
dependencies {
2022-06-06 19:34:46 +02:00
implementation 'com.github.SimpleMobileTools:Simple-Commons:faa6a972c2'
2022-02-26 19:25:26 +01:00
implementation 'org.greenrobot:eventbus:3.3.1'
implementation 'com.github.tibbi:IndicatorFastScroll:4524cd0b61'
2022-05-01 22:49:38 +02:00
implementation 'com.github.tibbi:android-smsmms:fe58a74d59'
implementation "me.leolin:ShortcutBadger:1.1.22"
2020-12-23 15:04:13 +01:00
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
2022-05-27 19:07:11 +02:00
kapt "androidx.room:room-compiler:2.4.2"
implementation "androidx.room:room-runtime:2.4.2"
annotationProcessor "androidx.room:room-compiler:2.4.2"
2020-04-03 10:12:58 +02:00
}