Questions tagged [google-chrome-android]

This is for questions related to development with Google Chrome for Android. A web browser that uses the Blink rendering engine in Android devices.

[google-chrome-android] is for questions related to development with Google Chrome for Android only. A web browser that uses the Blink rendering engine in Android devices.

13 questions
6
votes
0 answers

My PWA doesn't appear as installable in Chrome for Android ONLY

I have built a "PWA" that seems to be working properly on desktop environments. I can install it on my desktop PCs and Mac without any problem: Additionally, the requirements are also met (at this point in time [2021-05-11]): PWA Builder results…
3
votes
2 answers

Google Chrome 101 on Android shows TAB key on soft keyboard instead of ENTER for HTML input field

I am using Chrome 101 on Android 11. Setting the focus on a HTML input field brings up the soft keyboard. In earlier versions of Chrome, the soft keyboard then had the ENTER key on the lower right: Android Soft Keyboard ENTER key But now it shows…
3
votes
2 answers

Unexpected gray underline on ActionChip label

On one of my action chips I am getting this gray underline on the label. FYI, this is Flutter Web and it only seems to happen on Chrome Android, never on iOS Safari or desktop Chrome. The action chip acts as a filter button that when clicked allows…
2
votes
0 answers

navigator.share api in android changes the name of the file that the user shares

I create a .csv file to download it. In windows everything works fine, but in android, when sharing the file it is downloaded with a different name like "share9457849389.csv" const file = new File([text], 'myFile.csv', { type: 'text/csv' }) if…
Legna
  • 460
  • 6
  • 19
2
votes
1 answer

Infamous height:100% issue on chrome for android - address bar

I have created an angular app where the sidebar is height: 100%. However when viewing the webapp in Chrome for Android, when scrolling the document: The chrome address bar slides up gently The 100% real size remains the same until you…
Pieterjan
  • 2,738
  • 4
  • 28
  • 55
2
votes
1 answer

How to avoid the Android keyboard is closed automatically after I click on an Input to type on it?

My PWA had been working fine for several years until recently. Now, it seems there is a new problem with the keyboard because I cannot type anything at all. My bug, in my opinion, is related to another well-known issue: "Web apps are resized against…
1
vote
1 answer

Request to PWA start_url does not include cookies

Chrome and Firefox for Android don't seem to include cookies in the request to the manifest start_url when opening a Progressive Web App. My authentication system redirects the user to the login page. But as soon as the login page is refreshed, the…
1
vote
0 answers

Recording H264 in Web Browser, on Android

I have to record a canvas element on a web page, using MediaRecorder or similar APIs, and send chunks to the a server which generates a playable live HLS playlist. I have to NOT re-encode the video segments on the server, as this should use the…
MM PP
  • 4,050
  • 9
  • 35
  • 61
1
vote
1 answer

WebRTC onicecandidate is not triggered on chrome for android but works on all other browsers including firefox for android

Here is the code. sendChannel = localConnection.createDataChannel("sendChannel"); sendChannel.onopen = handleSendChannelStatusChange; sendChannel.onclose = handleSendChannelStatusChange; localConnection.ondatachannel =…
Jonathan
  • 21
  • 7
0
votes
1 answer

Why is my PWA not installing even though the "Install" button is there?

I'm currently building a Progressive Web App (PWA) and I'm trying to get it installed on my phone/computer. The manifest is set, defined, referenced in the and loaded, as I can see it using Chrome DevTools (Application > Manifest). There is…
Gugu72
  • 2,052
  • 13
  • 35
0
votes
0 answers

Chrome Mobile - .focus not working after alert

I am trying to focus an input element after an alert message in Google Chrome on Android. The problem is that the focus isnt set on the input element. The keyboard opens but I cant type anything in. This is my input:
0
votes
1 answer

Stripe CardElement: Incorrectly zooms way in when tapping on CVC field - Chrome Android

This issue has been super tough to pin down. Basically, my site uses Stripe Elements (React Stripe JS) and I noticed on my Pixel 3a using Chrome 101.0.4951.61 (Android 12), that when I would tap on the CVC field, the browser zooms WAY in. This…
BenjiFB
  • 4,545
  • 10
  • 46
  • 53
0
votes
1 answer

How to fix cursor jumping in inline contenteditable on Android Chrome?

I'm facing a strange issue: On a contenteditable with predefined content in the html, the text cursor jumps back to a certain point whenever you start typing a new word. The location it jumps to is at the end of the original…