When you try to send a long message this error appears:
chromium: [WARNING:navigator_impl.cc(343)] Refusing to load URL as it exceeds 2097152 characters.
This happens because of the targetSdkVersion in manifest is 19+ ( base on chromium ). So, you can use the evaluateJavascript() method instead of loadUrl. loadUrl only work fine without above error in version 18-. https://developer.android.com/guide/webapps/migrating.html.
When you try to send a long message this error appears:
chromium: [WARNING:navigator_impl.cc(343)] Refusing to load URL as it exceeds 2097152 characters.
This happens because of the targetSdkVersion in manifest is 19+ ( base on chromium ). So, you can use the evaluateJavascript() method instead of loadUrl. loadUrl only work fine without above error in version 18-. https://developer.android.com/guide/webapps/migrating.html.I will send PR shortly