我在应用程序的执行过程中出错了,我该如何解决这个问题呢?
apply plugin: 'com.android.library'
android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {
minSdkVersion 14
targetSdkVersion 27
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:support-v4:27.1.1'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.google.code.gson:gson:2.8.0'
api 'com.google.firebase:firebase-messaging:11.8.0'
api 'com.google.android.gms:play-services-maps:11.8.0'
api 'com.google.android.gms:play-services-location:11.8.0'
implementation 'de.hdodenhof:circleimageview:2.0.0'
api 'com.android.support:design:27.1.1'
implementation 'com.theartofdev.edmodo:android-image-cropper:2.7.0'
implementation 'com.github.bumptech.glide:glide:4.5.0'
implementation 'com.android.support:cardview-v7:27.1.1'
api project(':mobicomkit')//Note: use this for customization
//api 'com.applozic.communication.message:mobicomkit:5.8.2'
implementation 'com.daprlabs.aaron:cardstack:0.3.1-beta0'
implementation 'com.squareup.picasso:picasso:2.5.2'
implementation 'com.android.support.constraint:constraintlayout:1.1.2'
compile 'ai.api:sdk:2.0.7@aar'
compile 'ai.api:libai:1.4.8'
}我发现了下面的错误:
注释处理器必须立即显式声明。编译类路径上的下列依赖项包含注释处理器。请将它们添加到annotationProcessor配置中。- log4j-core-2.2.jar (org.apache.logging.log4j:log4j-core:2.2)
发布于 2018-08-07 11:33:19
https://stackoverflow.com/questions/51631636
复制相似问题