gpt4 book ai didi

android - annotationprocessor 和 apt configure 等效

转载 作者:塔克拉玛干 更新时间:2023-11-02 18:53:58 28 4
gpt4 key购买 nike

我正在使用 AndroidAnnotaion,但由于 Android Studio 2.3 和 Gradle 2.3.0,他们说 android-apt 已过时。而 annotationProcessor 是一个新的。所以,我想知道如何配置 annotationProcessor 就像我之前对 apt 所做的那样。

如果我理解有误,请帮助。

所以,之前...

apply plugin: 'android-apt'

dependencies {

def AAVersion = '4.2.0'
apt "org.androidannotations:androidannotations:$AAVersion"
compile "org.androidannotations:androidannotations-api:$AAVersion"
}

apt {
arguments {
library 'true'
}
}

现在……

dependencies {

def AAVersion = '4.2.0'
annotationProcessor "org.androidannotations:androidannotations:$AAVersion"
compile "org.androidannotations:androidannotations-api:$AAVersion"
}

最佳答案

您可以通过以下方式传递注释处理配置选项:

android {
defaultConfig {
javaCompileOptions {
annotationProcessorOptions {
arguments = ['library': 'true']
}
}
}
}

关于android - annotationprocessor 和 apt configure 等效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42622060/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com