1
0
mirror of https://github.com/etesync/android synced 2024-12-23 15:18:14 +00:00

Properly switch to kapt2 as the annotation processor

This commit is contained in:
Tom Hacohen 2018-01-22 13:08:05 +00:00
parent c1460792b2
commit c65640586b

View File

@ -11,10 +11,6 @@ apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
kapt {
generateStubs = true
}
android {
compileSdkVersion 27
buildToolsVersion '27.0.1'
@ -122,10 +118,6 @@ dependencies {
implementation "ch.acra:acra-mail:$acraVersion"
implementation "ch.acra:acra-toast:$acraVersion"
compile project(':cert4android')
compile project(':ical4android')
compile project(':vcard4android')
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support:cardview-v7:26.+'
compile 'com.android.support:design:26.+'
@ -139,7 +131,6 @@ dependencies {
compile 'io.requery:requery:1.5.0'
compile 'io.requery:requery-android:1.5.0'
compile 'io.requery:requery-kotlin:1.5.0'
annotationProcessor 'io.requery:requery-processor:1.5.0'
kapt 'io.requery:requery-processor:1.5.0'
compile group: 'com.madgag.spongycastle', name: 'core', version: '1.54.0.0'
@ -151,6 +142,10 @@ dependencies {
annotationProcessor 'org.projectlombok:lombok:1.16.20'
compile 'net.cachapa.expandablelayout:expandablelayout:2.9.2'
compile project(':cert4android')
compile project(':ical4android')
compile project(':vcard4android')
// for tests
androidTestCompile('com.android.support.test:runner:0.5') {
exclude group: 'com.android.support', module: 'support-annotations'