I am developing a webview based hybrid app on IOS and Android. I am testing using TestFlight for IOS and Public Beta testing on Android.
For IOS testers cannot use Safari Developer Tools to view the code, but for Android testers can view the code using Chrome Developer Tools.
How can I prevent the access to the code by Android testers. Is it some setting that I have missed in Android Studio?
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.