YetAnotherCallBlocker/app/build.gradle

36 lines
1.2 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
versionCode 1
versionName "0.0.1"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
2019-03-25 12:07:08 +01:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2019-03-18 13:25:48 +01:00
}
dependencies {
2019-03-25 12:07:08 +01:00
implementation 'org.slf4j:slf4j-api:1.7.26'
implementation 'com.github.tony19:logback-android:2.0.0'
implementation 'com.squareup.okhttp3:okhttp:3.14.0'
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'])
implementation 'com.android.support:appcompat-v7:28.0.0'
2019-03-25 12:07:08 +01:00
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:design:28.0.0'
2019-06-09 17:48:08 +02:00
implementation 'android.arch.work:work-runtime:1.0.1'
2019-03-18 13:25:48 +01:00
}