2019-03-18 13:25:48 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "dummydomain.yetanothercallblocker"
|
|
|
|
minSdkVersion 14
|
|
|
|
targetSdkVersion 28
|
2020-05-11 16:21:34 +02:00
|
|
|
versionCode 4010
|
|
|
|
versionName "0.4.1"
|
2020-05-06 11:15:34 +02:00
|
|
|
|
|
|
|
javaCompileOptions {
|
|
|
|
annotationProcessorOptions {
|
|
|
|
arguments = [eventBusIndex: 'dummydomain.yetanothercallblocker.EventBusIndex']
|
|
|
|
}
|
|
|
|
}
|
2019-03-18 13:25:48 +01:00
|
|
|
}
|
|
|
|
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-07-20 19:46:24 +02:00
|
|
|
lintOptions {
|
|
|
|
disable 'MissingTranslation'
|
|
|
|
}
|
2019-03-18 13:25:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2020-05-06 11:15:34 +02:00
|
|
|
def eventbus_version = '3.2.0'
|
|
|
|
|
2020-01-16 09:43:08 +01:00
|
|
|
implementation 'org.slf4j:slf4j-api:1.7.30'
|
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
|
2020-05-02 12:18:59 +02:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp:3.12.11'
|
|
|
|
implementation 'commons-codec:commons-codec:1.14' // beware: a version included in Android is used instead
|
2019-03-25 12:07:08 +01:00
|
|
|
|
2019-10-15 14:44:06 +02:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
2020-05-05 13:46:25 +02:00
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.1.0'
|
2020-05-02 12:18:59 +02:00
|
|
|
implementation 'com.google.android.material:material:1.1.0'
|
|
|
|
implementation 'androidx.work:work-runtime:2.3.4'
|
2020-05-06 11:15:34 +02:00
|
|
|
implementation "org.greenrobot:eventbus:$eventbus_version"
|
|
|
|
annotationProcessor "org.greenrobot:eventbus-annotation-processor:$eventbus_version"
|
2019-03-18 13:25:48 +01:00
|
|
|
}
|