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.
在 Android 中创建受保护的方法BillingReceiver会使我的帐单易受攻击吗?
BillingReceiver
谢谢。
不是本身。
但是,仅依靠 Java 语言访问修饰符来保护数据将意味着您的应用程序可能容易受到攻击。如果坏人可以在你的 VM 中运行代码并使用反射 API,那么绕过 Java 语言访问修饰符和访问private字段和方法就很简单了。
private
如果您担心的“坏人”是设备的所有者,您应该假设他们可以破坏在他们的设备上运行的任何代码。(这在技术上可能很困难,但只需要一个聪明而有动力的人就可以解决......而且猫已经出局了。)