69 lines
2.0 KiB
Groovy
69 lines
2.0 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
|
def keystoreProperties = new Properties()
|
|
if (keystorePropertiesFile.exists()) {
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
|
|
defaultConfig {
|
|
applicationId "com.simplemobiletools.smsmessenger"
|
|
minSdkVersion 22
|
|
targetSdkVersion 30
|
|
versionCode 14
|
|
versionName "5.4.3"
|
|
setProperty("archivesBaseName", "sms-messenger")
|
|
}
|
|
|
|
signingConfigs {
|
|
if (keystorePropertiesFile.exists()) {
|
|
release {
|
|
keyAlias keystoreProperties['keyAlias']
|
|
keyPassword keystoreProperties['keyPassword']
|
|
storeFile file(keystoreProperties['storeFile'])
|
|
storePassword keystoreProperties['storePassword']
|
|
}
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
applicationIdSuffix ".debug"
|
|
}
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
if (keystorePropertiesFile.exists()) {
|
|
signingConfig signingConfigs.release
|
|
}
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
}
|
|
|
|
lintOptions {
|
|
checkReleaseBuilds false
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.simplemobiletools:commons:5.30.12'
|
|
implementation 'org.greenrobot:eventbus:3.2.0'
|
|
implementation 'com.klinkerapps:android-smsmms:5.2.6'
|
|
implementation 'com.github.tibbi:IndicatorFastScroll:08f512858a'
|
|
implementation "me.leolin:ShortcutBadger:1.1.22"
|
|
|
|
kapt "androidx.room:room-compiler:2.2.5"
|
|
implementation "androidx.room:room-runtime:2.2.5"
|
|
annotationProcessor "androidx.room:room-compiler:2.2.5"
|
|
}
|