无法通过"编译选项"指定 -处理器路径或 --处理器路径



在我的项目中实现Firebase Cloud Messaging后,我在运行时遇到错误无法合并清单,所以我将我的应用程序迁移到Androidx.迁移到安卓x后,我收到此错误

"无法通过CompileOptions.compilerArgs指定 -处理器路径或 --处理器路径。请改用CompileOptions.annotationProcessorPath属性。

我的build.gradle(模块:应用程序(文件

apply plugin: 'com.android.application'
apply plugin: 'android-apt'
apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 28
buildToolsVersion "28.0.3"
defaultConfig {
applicationId "android.example.com.squawker"
minSdkVersion 16
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),            
'proguard-rules.pro'
}
}
}
dependencies {
implementation ('com.google.firebase:firebase-messaging:20.0.0')  
{force= true}
implementation fileTree(dir: 'libs', include: ['*.jar'])
androidTestImplementation('androidx.test.espresso:espresso- 
core:3.1.0',   
{
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation 'androidx.appcompat:appcompat:1.0.2'
testImplementation 'junit:junit:4.12'
// RecyclerView
implementation 'androidx.recyclerview:recyclerview:1.0.0'
// Schematic dependencies for ContentProvider
apt 'net.simonvt.schematic:schematic-compiler:0.6.3'
implementation 'net.simonvt.schematic:schematic:0.6.3'
// Preferences Dependencies
implementation 'androidx.preference:preference:1.0.0'
}

问题就在这里。从代码中删除此行。

应用插件:"安卓APT">

并且仅使用此插件。

应用插件:"com.android.application">

从Android Gradle插件版本2.2或更高版本开始,此版本已弃用android-apt,以前由android-apt提供的所有功能现在都可以在Android插件中使用。您可以从此处阅读有关此内容的更多信息。

相关内容

  • 没有找到相关文章

最新更新