0

在 eclipse 中调试时,android 中的 webview url 在 android logcat 中可见。作为一种安全措施,如何防止其他人在 Eclipse 中查看此 url?

4

1 回答 1

0

在您的清单文件中,添加以下内容:

<application
    android:name="com.MyApplication"
    android:debuggable="false"
    android:icon="@drawable/icon"
    android:label="@string/app_name">

希望这可以帮助。

于 2013-10-28T11:44:55.510 回答