We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
偶然发现一个问题。 layout文件中 android:onClick="@{(v)->presenter.onClick(v)}" 会导致混淆错误。 报错信息的大概意思是无法解析 "@" 字符,这个需要额外的混淆处理么?
The text was updated successfully, but these errors were encountered:
不用吧,混淆应该不会混淆资源文件吧 另外,能提供错误的截图吗?
Sorry, something went wrong.
不是混淆资源文件,是混淆规则里keep 监听器回调事件时导致的。
https://stackoverflow.com/questions/35472130/conflict-between-android-data-binding-and-guava-causes-proguard-error 添加以下代码试试 -dontwarn android.databinding.** -keep class android.databinding.** { *; }
No branches or pull requests
偶然发现一个问题。
layout文件中
android:onClick="@{(v)->presenter.onClick(v)}"
会导致混淆错误。
报错信息的大概意思是无法解析 "@" 字符,这个需要额外的混淆处理么?
The text was updated successfully, but these errors were encountered: