我正在IOS和Android上开发基于webview的混合应用程序。我正在测试使用TestFlight进行IOS和Android上的公共Beta测试。
对于IOS,测试人员无法使用Safari开发人员工具查看代码,但Android测试人员可以使用Chrome开发者工具查看代码。
如何阻止Android测试人员访问代码。这是我在Android Studio中错过的一些设置吗?
答案 0 :(得分:1)
I have found that it helps to read the manuals and in particular
https://developer.android.com/studio/publish/preparing.html
I had WebView.setWebContentsDebuggingEnabled (true); in my code which was causing the problem.