YetAnotherCallBlocker/app/build.gradle

51 lines
1.8 KiB
Groovy
Raw Normal View History

2019-03-18 13:25:48 +01:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "dummydomain.yetanothercallblocker"
minSdkVersion 14
targetSdkVersion 28
2019-12-01 11:49:13 +01:00
versionCode 3020
versionName "0.3.2"
2019-03-18 13:25:48 +01:00
}
2019-12-01 11:41:42 +01:00
signingConfigs {
def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(rootProject.file("keystore.properties")))
release {
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
}
}
2019-03-18 13:25:48 +01:00
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2019-12-01 11:41:42 +01:00
signingConfig signingConfigs.release
2019-03-18 13:25:48 +01:00
}
}
2019-03-25 12:07:08 +01:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
disable 'MissingTranslation'
}
2019-03-18 13:25:48 +01:00
}
dependencies {
2019-12-01 10:34:42 +01:00
implementation 'org.slf4j:slf4j-api:1.7.29'
2019-03-25 12:07:08 +01:00
implementation 'com.github.tony19:logback-android:2.0.0'
2019-10-15 14:44:06 +02:00
//noinspection GradleDependency: 3.12.* is the latest version compatible with Android <5
implementation 'com.squareup.okhttp3:okhttp:3.12.6'
2019-03-25 12:07:08 +01:00
implementation 'commons-codec:commons-codec:1.12' // beware: a version included in Android is used instead
2019-03-18 13:25:48 +01:00
implementation fileTree(dir: 'libs', include: ['*.jar'])
2019-10-15 14:44:06 +02:00
implementation 'androidx.appcompat:appcompat:1.1.0'
2019-08-31 13:26:04 +02:00
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.work:work-runtime:2.2.0'
2019-03-18 13:25:48 +01:00
}