Simple-Contacts/app/build.gradle

76 lines
2.1 KiB
Groovy
Raw Normal View History

2017-12-10 09:16:59 +00:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
2017-12-10 09:16:59 +00:00
def keystorePropertiesFile = rootProject.file("keystore.properties")
def keystoreProperties = new Properties()
2019-12-19 20:57:01 +00:00
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}
2017-12-10 09:16:59 +00:00
android {
2022-08-18 20:00:11 +00:00
compileSdkVersion 33
2017-12-10 09:16:59 +00:00
defaultConfig {
2018-11-05 11:36:29 +00:00
applicationId "com.simplemobiletools.contacts.pro"
minSdkVersion 23
2022-08-18 20:00:11 +00:00
targetSdkVersion 33
2023-01-12 21:40:43 +00:00
versionCode 101
versionName "6.22.1"
2017-12-10 09:38:17 +00:00
setProperty("archivesBaseName", "contacts")
2017-12-10 09:16:59 +00:00
}
2017-12-31 08:36:39 +00:00
signingConfigs {
2019-12-19 20:57:01 +00:00
if (keystorePropertiesFile.exists()) {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
}
2017-12-31 08:36:39 +00:00
}
2017-12-10 09:16:59 +00:00
buildTypes {
debug {
applicationIdSuffix ".debug"
}
2017-12-10 09:16:59 +00:00
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
if (keystorePropertiesFile.exists()) {
signingConfig signingConfigs.release
}
2017-12-10 09:16:59 +00:00
}
}
2017-12-10 09:38:17 +00:00
2022-01-03 17:38:16 +00:00
flavorDimensions "variants"
productFlavors {
2022-02-05 10:37:16 +00:00
core {}
2022-01-03 17:38:16 +00:00
fdroid {}
2022-03-02 19:09:08 +00:00
prepaid {}
2022-01-03 17:38:16 +00:00
}
2017-12-10 09:38:17 +00:00
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
2017-12-10 09:16:59 +00:00
}
dependencies {
2023-01-12 21:30:40 +00:00
implementation 'com.github.SimpleMobileTools:Simple-Commons:449b24c6a4'
2021-11-19 16:36:02 +00:00
implementation 'com.googlecode.ez-vcard:ez-vcard:0.11.3'
2021-12-07 11:27:33 +00:00
implementation 'com.github.tibbi:IndicatorFastScroll:4524cd0b61'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
2022-06-27 08:04:17 +00:00
implementation 'me.grantland:autofittextview:0.2.1'
2022-08-14 09:21:35 +00: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"
2017-12-10 09:16:59 +00:00
}