我正在尝试将我的应用程序项目转换为库,但出现类似
resDialogTitle = R.string.crash_dialog_title,
The value for annotation attribute ReportsCrashes.resDialogTitle must be a constant expression
它们用于 ACRA 标头
@ReportsCrashes(formKey = "--", mode = ReportingInteractionMode.DIALOG, mailTo = "--", customReportContent = {
ReportField.APP_VERSION_CODE, ReportField.APP_VERSION_NAME,
ReportField.ANDROID_VERSION, ReportField.PHONE_MODEL,
ReportField.CUSTOM_DATA, ReportField.STACK_TRACE, ReportField.LOGCAT }
// resToastText = R.string.crash_toast_text, // optional, displayed as soon as
// the crash occurs, before collecting data which can take a few seconds
resDialogText = getString(R.string.crash_dialog_text),
resDialogIcon = android.R.drawable.ic_dialog_info, // optional.
// default
// is
// a
// warning
// sign
//resDialogTitle = R.string.crash_dialog_title, // optional. default is your
// application name
resDialogCommentPrompt = R.string.crash_dialog_comment_prompt, // optional. when
// defined, adds
// a user text
// field input
// with this
// text resource
// as a label
resDialogOkToast = R.string.crash_dialog_ok_toast // optional. displays a Toast
// message when the user
// accepts to send a report.
)
public class MainAppClass extends Application {
private static MainAppClass singleton;
如何解决这个问题?
在 ACRA 中,自 ADT 14 起,R 字段在库项目中不是常量。 2 种解决方案:
- 在使用库的应用中声明R.string.crash_dialog_text
- 您可以使用 ACRA.getConfig() 动态设置这些:
方法 ACRA.getConfig() 返回一个 ACRAConfiguration 对象,该对象为每个@ReportsCrashes配置项提供一个资源库。
例如:
ACRA.getConfig().setResDialogText(R.string.crash_dialog_text);
记得在你的onCreate()方法中调用ACRA.init(this)。
您可以通过这种方式设置所需的所有字段。查看此处。