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.
在 eclipse 中调试时,android 中的 webview url 在 android logcat 中可见。作为一种安全措施,如何防止其他人在 Eclipse 中查看此 url?
在您的清单文件中,添加以下内容:
<application android:name="com.MyApplication" android:debuggable="false" android:icon="@drawable/icon" android:label="@string/app_name">
希望这可以帮助。