All Questions
1,979 questions
0
votes
0
answers
54
views
How to open chrome forcibly instead of open webview when I click on my url in any app
My problem:
I have a service with web interface. The customers receives a link to the web page and click's on it.
Depends on a customer platform - the link must be opened in a different way:
in case ...
0
votes
0
answers
28
views
DNA Editor App DOM UI Rendering not loading
enter image description here
This is how it's supposed to look and functions perfectly fine in my browser, but I've have had to start over and rebuild it from scratch for Android Webview since it ...
1
vote
1
answer
74
views
How to get fetch TOWARDS localhost to FUNCTION on CORDOVA Android
My question is simple.
I make a call using fetch in my CORDOVA app like so, from the ./www/js/index.js script:
const response = await fetch('http://localhost:3000/poc3/convert', {
method: 'POST',
...
0
votes
0
answers
27
views
How to Auto-Redirect My Website from Android WebView Apps to an External Browser?
Attempt 1: Using googlechrome://
if (/android/i.test(navigator.userAgent)) {
window.location.href = `googlechrome://${window.location.href.replace(/^https?:\/\//, '')}`;
}
Result: The link stays ...
0
votes
0
answers
24
views
How to Extract YouTube Video URL When Playing Suggested Video in WebView?
I am trying to extract the YouTube video URL in an Android app when the user clicks on a suggested video inside a WebView. The WebView is displaying a YouTube video, and I want to capture the video ...
0
votes
0
answers
26
views
Android webview javascript interface being removed on webforms partial postback
I am trying to interact with a WebForms site via a WebView inside an Android application.
I need to include a javascript interface to be able to send messages to the webview. However whenever a page ...
2
votes
1
answer
51
views
Android-Java-Webview-Javascript: I am not able to see source codes of some sites like instagram?
When I try to read source code of for example example.com, it works. But as I try to use it for example for instagram.com it does not work anymore and app falls. Can I ask where is the difference and ...
0
votes
0
answers
52
views
How do I get memory extensive JavaScript to work on HTML canvas via Android Studio Webview?
I am trying to make an Android App, I'm a baby developer I won't lie, but it's based on astrology calculations. However my canvas will load when I comment out astrology.js but breaks because of this ...
2
votes
0
answers
259
views
Android WebView - Origin Private File System - An attempt was made to break through the security policy of the user agent
We have an Android app using WebView to display part of the user interface. In app telemetry we see that on some user device the following exception is thrown:
SecurityError: Failed to execute '...
0
votes
1
answer
280
views
WebView polling breaks on Android 15 after opening Chrome Custom Tabs
WebView polling breaks on Android 15 after opening Chrome Custom Tabs
I'm encountering an issue where polling in a WebView stops working on Android 15 after opening Chrome Custom Tabs. The polling ...
0
votes
0
answers
62
views
WebView Android not satisfying S.browser_fallback_url
I am trying to implement an app that uses webview, inside the html loaded on clicking a button the app a intent url of the form intent://<data>#Intent;scheme=<scheme-name>;action=android....
0
votes
0
answers
328
views
Open app from Instagram webview on Android
When the user is browsing a web page in the Instagram webview, there doesn't appear to be a way to open another app that the user has installed on their Android device.
I have Android App Links set up ...
0
votes
0
answers
38
views
WebView Flutter - Changing Date/Time closes application
Currently using webview_flutter package to exhibit a custom html page inside my application. It consists of come input forms that are in hh:mm format.
I have attributed default values to all fields, ...
0
votes
0
answers
40
views
Leaflet heatmap 'getImageData' Javascript error in Android Webview (chromium)
Each time I attempt to display a Leaflet heatmap in an Android WebView object I get the following error in logcat from chromium and the map never displays:
"Uncaught IndexSizeError: Failed to ...
0
votes
0
answers
34
views
WEBVIEW android app cannot download file via server
package com.example.mywebsite;
import android.Manifest;
import android.app.DownloadManager;
import android.content.ContentValues;
import android.content.Context;
import android.content.Intent;
import ...