Simple-Clock/app/build.gradle

83 lines
2.5 KiB
Groovy
Raw Normal View History

2018-02-28 00:02:08 +01:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
2021-08-31 22:18:45 +02:00
apply plugin: 'kotlin-kapt'
2018-02-28 00:02:08 +01:00
def keystorePropertiesFile = rootProject.file("keystore.properties")
def keystoreProperties = new Properties()
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}
2018-02-28 00:02:08 +01:00
android {
2022-08-31 19:11:09 +02:00
compileSdkVersion 33
2018-02-28 00:02:08 +01:00
defaultConfig {
applicationId "com.simplemobiletools.clock"
minSdkVersion 23
2022-08-31 19:11:09 +02:00
targetSdkVersion 33
2023-07-09 18:04:40 +02:00
versionCode 39
versionName "5.10.3"
2018-02-28 00:02:08 +01:00
setProperty("archivesBaseName", "clock")
vectorDrawables.useSupportLibrary = true
2018-02-28 00:02:08 +01:00
}
2018-02-28 10:38:05 +01:00
signingConfigs {
if (keystorePropertiesFile.exists()) {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
}
2018-02-28 10:38:05 +01:00
}
2018-02-28 00:02:08 +01:00
buildTypes {
debug {
applicationIdSuffix ".debug"
}
release {
2018-02-28 10:38:05 +01:00
minifyEnabled true
2018-02-28 00:02:08 +01:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
if (keystorePropertiesFile.exists()) {
signingConfig signingConfigs.release
}
2018-02-28 00:02:08 +01:00
}
}
2022-04-20 21:25:18 +02:00
flavorDimensions "variants"
productFlavors {
core {}
fdroid {}
2022-07-01 10:38:58 +02:00
prepaid {}
2022-04-20 21:25:18 +02:00
}
2018-02-28 00:02:08 +01:00
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
}
dependencies {
2023-07-17 15:02:59 +02:00
implementation 'com.github.SimpleMobileTools:Simple-Commons:42733f39a4'
implementation 'com.facebook.stetho:stetho:1.5.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
2023-06-23 10:44:21 +02:00
implementation 'io.github.ShawnLin013:number-picker:2.4.13'
2022-04-20 20:05:21 +02:00
implementation "androidx.preference:preference-ktx:1.2.0"
implementation "androidx.work:work-runtime-ktx:2.7.1"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0'
2022-04-20 20:05:21 +02:00
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.1'
2022-08-31 19:11:09 +02:00
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1'
2022-04-20 20:05:21 +02:00
implementation 'org.greenrobot:eventbus:3.3.1'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation 'me.grantland:autofittextview:0.2.1'
2022-04-20 20:05:21 +02:00
2023-05-19 11:40:58 +02:00
implementation 'androidx.room:room-runtime:2.5.1'
kapt 'androidx.room:room-compiler:2.5.1'
2018-02-28 00:02:08 +01:00
}