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 {
compileSdkVersion 30
2018-02-28 00:02:08 +01:00
defaultConfig {
applicationId "com.simplemobiletools.clock"
2019-01-24 21:47:36 +01:00
minSdkVersion 21
targetSdkVersion 30
2021-04-19 16:11:56 +02:00
versionCode 23
versionName "5.5.1"
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
}
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
2020-03-04 08:42:19 +01:00
compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
kotlinOptions {
jvmTarget = "1.8"
freeCompilerArgs = ["-XXLanguage:+NewInference"]
}
2018-02-28 00:02:08 +01:00
}
dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:b6e2ffb710'
2018-03-03 23:51:58 +01:00
implementation 'com.facebook.stetho:stetho:1.5.0'
2020-12-28 22:20:58 +01:00
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'com.shawnlin:number-picker:2.4.6'
2020-12-28 22:20:58 +01:00
implementation "androidx.preference:preference-ktx:1.1.1"
2021-04-19 09:53:14 +02:00
implementation "androidx.work:work-runtime-ktx:2.5.0"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1'
2020-03-08 21:42:23 +01:00
implementation 'org.greenrobot:eventbus:3.2.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
2021-08-31 22:18:45 +02:00
implementation 'androidx.room:room-runtime:2.3.0'
kapt 'androidx.room:room-compiler:2.3.0'
2018-02-28 00:02:08 +01:00
}