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.contacts.pro" minSdkVersion 21 targetSdkVersion 30 versionCode 81 versionName "6.14.2" setProperty("archivesBaseName", "contacts") } signingConfigs { if (keystorePropertiesFile.exists()) { release { keyAlias keystoreProperties['keyAlias'] keyPassword keystoreProperties['keyPassword'] storeFile file(keystoreProperties['storeFile']) storePassword keystoreProperties['storePassword'] } } } buildTypes { debug { applicationIdSuffix ".debug" } release { minifyEnabled true 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.github.SimpleMobileTools:Simple-Commons:8084f88f20' implementation 'joda-time:joda-time:2.10.3' implementation 'com.googlecode.ez-vcard:ez-vcard:0.10.5' implementation 'com.github.tibbi:IndicatorFastScroll:c3de1d040a' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' kapt "androidx.room:room-compiler:2.2.6" implementation "androidx.room:room-runtime:2.2.6" annotationProcessor "androidx.room:room-compiler:2.2.6" }