apply plugin: 'com.android.application' apply plugin: 'org.greenrobot.greendao' android { compileSdkVersion 30 defaultConfig { applicationId "dummydomain.yetanothercallblocker" minSdkVersion 14 targetSdkVersion 30 versionCode 5170 versionName "0.5.17" javaCompileOptions { annotationProcessorOptions { arguments = [eventBusIndex: 'dummydomain.yetanothercallblocker.EventBusIndex'] } } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } applicationVariants.all { variant -> variant.resValue "string", "app_id", variant.applicationId } lintOptions { lintConfig file("lint.xml") abortOnError false } } greendao { schemaVersion 1 } dependencies { def eventbus_version = '3.2.0' implementation 'org.slf4j:slf4j-api:1.7.32' runtimeOnly 'com.github.tony19:logback-android:2.0.0' implementation 'org.conscrypt:conscrypt-android:2.5.2' //noinspection GradleDependency: 3.12.* is the latest version compatible with Android <5 implementation 'com.squareup.okhttp3:okhttp:3.12.13' implementation 'com.gitlab.xynngh:LibPhoneNumberInfo:c77bdd2b69' implementation 'org.apache.commons:commons-csv:1.8' implementation 'androidx.appcompat:appcompat:1.3.1' implementation 'androidx.recyclerview:recyclerview:1.2.1' implementation 'androidx.recyclerview:recyclerview-selection:1.1.0' implementation 'androidx.paging:paging-runtime:2.1.2' implementation 'com.google.android.material:material:1.4.0' implementation 'androidx.preference:preference:1.1.1' implementation 'androidx.work:work-runtime:2.6.0' implementation 'org.greenrobot:greendao:3.3.0' implementation "org.greenrobot:eventbus:$eventbus_version" annotationProcessor "org.greenrobot:eventbus-annotation-processor:$eventbus_version" }