: incompatible types: String cannot be converted to Throwable Slog.d(TAG, "hyj BroadcastReceiver", "Broadcast received from package: " + packageName); ^ Note: Some messages have been simplified; recompile with -Xdiags:verbose to get full output 1 error
时间: 2024-02-10 07:18:13 浏览: 368
TypeError: _queue_reduction(): incompatible function arguments.
这是一个编译错误,提示你在Slog.d方法中传递了不兼容的参数类型。根据错误信息,第三个参数应该是一个Throwable类型的对象,但你传递了一个字符串类型的对象。你需要将第三个参数改为一个Throwable类型的对象,或者将Slog.d方法的第三个参数改为一个字符串类型的对象。同时,你可以使用-Xdiags:verbose参数来获取更详细的错误信息。
阅读全文