How "safe" is the capacitor webview on a build release of an app (android)? #6013
-
I am curious to know if someone would be able to open a chrome debugging session of the web view in a capacitor app, that was installed from the store, that is, a build release. Would this be theoretically possibly? |
Beta Was this translation helpful? Give feedback.
Answered by
jcesarmobile
Oct 21, 2022
Replies: 1 comment 1 reply
-
It’s possible to do it if you set |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
distante
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It’s possible to do it if you set
WebView.setWebContentsDebuggingEnabled(true);
, but for release builds Capacitor sets it to false by default. So shouldn’t be possible unless you change the value to true on purpose.