Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 dexguard 混淆时,在 dexguard 发布构建期间会抛出引用的类未找到错误。
找不到引用的类 com.sun.jna.ptr.IntByReference
请提出解决方案。
DexGuard 打印出有关缺少依赖项的警告,就像编译器一样。
如果您的应用程序依赖于该类,则需要确保相应的库在您的项目的依赖项中列出。
如果您的应用程序并不真正需要该类,您可以使用
-dontwarn com.sun.jna.ptr.IntByReference
在您的 DexGuard 配置中。