YetAnotherCallBlocker/app/build.gradle

52 lines
1.7 KiB
Groovy
Raw Normal View History

2019-03-18 16:25:48 +04:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
2019-03-18 16:25:48 +04:00
defaultConfig {
applicationId "dummydomain.yetanothercallblocker"
minSdkVersion 14
2020-06-02 16:36:45 +04:00
//noinspection OldTargetApi: required for call blocking
2019-03-18 16:25:48 +04:00
targetSdkVersion 28
2020-07-25 13:49:26 +04:00
versionCode 4100
versionName "0.4.10"
javaCompileOptions {
annotationProcessorOptions {
arguments = [eventBusIndex: 'dummydomain.yetanothercallblocker.EventBusIndex']
}
}
2019-03-18 16:25:48 +04:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
2019-03-25 15:07:08 +04:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
disable 'MissingTranslation'
}
2019-03-18 16:25:48 +04:00
}
dependencies {
def eventbus_version = '3.2.0'
2020-01-16 12:43:08 +04:00
implementation 'org.slf4j:slf4j-api:1.7.30'
2020-06-12 19:42:25 +04:00
runtimeOnly 'com.github.tony19:logback-android:2.0.0'
2020-06-14 18:43:53 +04:00
implementation 'org.conscrypt:conscrypt-android:2.4.0'
2019-10-15 16:44:06 +04:00
//noinspection GradleDependency: 3.12.* is the latest version compatible with Android <5
2020-06-02 16:41:17 +04:00
implementation 'com.squareup.okhttp3:okhttp:3.12.12'
2020-07-03 20:24:19 +04:00
implementation 'com.gitlab.xynngh:LibPhoneNumberInfo:fd60ad9583'
2019-03-25 15:07:08 +04:00
2019-10-15 16:44:06 +04:00
implementation 'androidx.appcompat:appcompat:1.1.0'
2020-05-05 15:46:25 +04:00
implementation 'androidx.recyclerview:recyclerview:1.1.0'
2020-05-02 14:18:59 +04:00
implementation 'com.google.android.material:material:1.1.0'
implementation 'androidx.preference:preference:1.1.1'
2020-05-02 14:18:59 +04:00
implementation 'androidx.work:work-runtime:2.3.4'
implementation "org.greenrobot:eventbus:$eventbus_version"
annotationProcessor "org.greenrobot:eventbus-annotation-processor:$eventbus_version"
2019-03-18 16:25:48 +04:00
}