faniry
New Member
Attempt 1: Using googlechrome:
Result: The link stays inside LinkedIn’s WebView (no redirection happens).
Attempt 2: Using Android Intent
Result: The page loads infinitely inside LinkedIn’s WebView.
I Need a way to force the link to open in Chrome (or the default browser) only when possible.
iOS: Works with this code
On iOS, I managed to force the link to open in Safari using the following code:
B4X:
if (/android/i.test(navigator.userAgent)) {
window.location.href = `googlechrome://${window.location.href.replace(/^https?:\/\//, '')}`;
}
Attempt 2: Using Android Intent
B4X:
if (/android/i.test(navigator.userAgent)) {
const intentUrl = `intent://${window.location.href.replace(/^https?:\/\//, '')}#Intent;scheme=https;package=com.android.chrome;end`;
window.location.href = intentUrl;
}
Result: The page loads infinitely inside LinkedIn’s WebView.
I Need a way to force the link to open in Chrome (or the default browser) only when possible.
iOS: Works with this code
On iOS, I managed to force the link to open in Safari using the following code:
B4X:
if (userAgent.includes('Mobile') && (userAgent.includes('iPhone') || userAgent.includes('iPad')) && userAgent.includes('LinkedInApp')) {
window.location.href = 'x-safari-' + url;
return;
}