2020-03-28 16:35:01 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
|
2020-03-30 19:28:12 +00:00
|
|
|
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
|
|
|
def keystoreProperties = new Properties()
|
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
|
|
}
|
|
|
|
|
2020-03-28 16:35:01 +00:00
|
|
|
android {
|
2022-08-29 08:04:30 +00:00
|
|
|
compileSdkVersion 33
|
2020-03-28 16:35:01 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.simplemobiletools.voicerecorder"
|
2022-12-27 15:31:49 +00:00
|
|
|
minSdkVersion 23
|
2022-08-29 08:04:30 +00:00
|
|
|
targetSdkVersion 33
|
2022-11-20 09:59:52 +00:00
|
|
|
versionCode 32
|
|
|
|
versionName "5.10.4"
|
2020-03-28 16:35:01 +00:00
|
|
|
setProperty("archivesBaseName", "voice-recorder")
|
|
|
|
vectorDrawables.useSupportLibrary = true
|
|
|
|
}
|
|
|
|
|
2020-03-30 19:28:12 +00:00
|
|
|
signingConfigs {
|
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
release {
|
|
|
|
keyAlias keystoreProperties['keyAlias']
|
|
|
|
keyPassword keystoreProperties['keyPassword']
|
|
|
|
storeFile file(keystoreProperties['storeFile'])
|
|
|
|
storePassword keystoreProperties['storePassword']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-28 16:35:01 +00:00
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
}
|
|
|
|
release {
|
2022-02-10 21:13:55 +00:00
|
|
|
minifyEnabled true
|
2020-03-28 16:35:01 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2020-03-30 19:28:12 +00:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
2020-03-28 16:35:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-03 21:58:02 +00:00
|
|
|
flavorDimensions "variants"
|
|
|
|
productFlavors {
|
2022-02-02 21:45:22 +00:00
|
|
|
core {}
|
2022-01-03 21:58:02 +00:00
|
|
|
fdroid {}
|
2022-07-02 13:03:16 +00:00
|
|
|
prepaid {}
|
2022-01-03 21:58:02 +00:00
|
|
|
}
|
|
|
|
|
2020-03-28 16:35:01 +00:00
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-12-27 15:31:49 +00:00
|
|
|
implementation 'com.github.SimpleMobileTools:Simple-Commons:d41abd229b'
|
2022-05-20 19:46:24 +00:00
|
|
|
implementation 'org.greenrobot:eventbus:3.3.1'
|
2021-12-07 10:19:20 +00:00
|
|
|
implementation 'com.github.Armen101:AudioRecordView:1.0.4'
|
2020-08-23 21:32:05 +00:00
|
|
|
implementation 'androidx.documentfile:documentfile:1.0.1'
|
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2022-05-20 19:46:24 +00:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
2022-06-14 11:57:11 +00:00
|
|
|
implementation 'com.github.naman14:TAndroidLame:1.1'
|
2022-06-27 08:03:00 +00:00
|
|
|
implementation 'me.grantland:autofittextview:0.2.1'
|
2020-03-28 16:35:01 +00:00
|
|
|
}
|