Questions tagged [firefox-android]
44 questions
0
votes
1 answer
How can I go to my router's IP address from Firefox on Android?
Entering
https://192.168.0.1/
In the navigation bar on my recently updated Firefox mobile (Android) always sends me to the default search engine. The previous situation was annoying enough (requiring the leading http(s)://) but now I literally…

Peter
- 971
- 8
- 15
0
votes
0 answers
Undefined SpeechSynthUtterance error on Firefox Android
Background
I am creating a simple SpeechSynth component that runs fine on most devices but somehow on FireFox android the SpeechSynthUtterance will dispatch the onerror event with no error property defined on the event.
Voices are loaded; it's not…

Jankapunkt
- 8,128
- 4
- 30
- 59
0
votes
0 answers
Why does the input event run twice and show the previous value in Firefox for Android?
I am trying to remove invalid characters and convert them to uppercase;
If you run the code on latest Firefox for Android, the input event will be fired twice and the input value will be duplicated.
But if you remove any manipulations (toUpperCase…

Andrew G
- 97
- 1
- 7
0
votes
1 answer
How to catch camera load event on Firefox Android?
I am unable to catch the load event when my user select a picture directly from camera within Firefox Android.
I have an image input field that triggers this function:
const selectPicture = async () => {
if (uploadPhotoRef.current?.files) {
…

Double Sept
- 154
- 1
- 10
0
votes
1 answer
How to run kotlin app from android studio?
I cloned this repo onto my laptop: https://github.com/mozilla-mobile/focus-android
I then opened Android Studio and imported project. (imported the focus-android folder). But the run button right now is grayed out. I tried to edit configurations and…

user2272600
- 47
- 8
0
votes
0 answers
How mobile Firefox addon can recieve information from it's Desktop version? (if both are logged in)
I want to be able to close tabs on my mobile Firefox, while using Desktop version of Firefox. I thought Tab-sync would make it work, but it doesn't. So now I'm on the quest to fix it with an extension.
I have thought about using sync area of storage…

Andrey Ant
- 103
- 1
- 7
0
votes
2 answers
Defaulting camera sharing permissions in Firefox for Android
I'm developing a barcode scanning page for our warehouse, to enable the guys to scan in barcodes of goods coming in and out, and manage properties like dimensions and weights where they can. Since this ties in directly to our in-house CRM, we've…

DingusKhan
- 123
- 1
- 15
0
votes
1 answer
WebExtensions on Firefox for Android: is it possible to use some analogue of context menu?
I installed my extension on Firefox for Android and not found any analogue of the context menu. Documentation about context menu and development of extensions for Android is not mention it. The page about supported APIs looks like missing…

Vitaly Zdanevich
- 13,032
- 8
- 47
- 81
0
votes
1 answer
ICE Failed when using Firefox for Android after first call
On some devices (specially Samsung) I have found the following error while establishing a P2P connection:
Error processing ICE candidate-
Failed to set remote offer sdp: The order of m-lines in subsequent offer doesn't match order from previous…

carlATR
- 86
- 1
- 11
0
votes
1 answer
web extensions: Update menu on firefox android
Before web extensions, I used NativeWindow.menu.add and achieved this on firefox android.
Add menu I can do this from browser_action.default_title.
Update text from the addon (like '936')
How do I do this in web…

Matt - sanemat
- 5,418
- 8
- 37
- 41
0
votes
1 answer
Detect firefox android in firefox addon?
Before Firefox Quantum, I can detect firefox android in firefox addon with this snippet below.
const { Cc, Ci } = require('chrome');
/**
* Is firefox android?
*
* @returns {boolean} true if there is firefox android in firefox addon
* @see…

Matt - sanemat
- 5,418
- 8
- 37
- 41
0
votes
1 answer
Can't use non-standard search engines in firefox widget on android
I asked this question in the support forum for firefox on android more than three weeks ago (https://support.mozilla.org/en-US/questions/1167806), but haven't gotten any reactions, but the counter (I'm not sure how precise/easy to manipulate that…

Henrik supports the community
- 801
- 1
- 8
- 17
0
votes
1 answer
FireFox Android: how long does a webextensions background script last?
Specifically, if I crate a variable in my background.js, and I close firefox (to the point that all tabs must be re-loaded, but are still saved), will the variable still exist in the state I left it?
In my specific case, I want to store some data…

YourGamerMom
- 377
- 3
- 13
0
votes
1 answer
WebExtensions: How to send a message to content script? (Android)
I just noticed that the tabs API is only available for the desktop not for Android. In the past I have used this code to send messages to my content scripts:
sendMsgToTabs(msg) {
return browser.tabs.query({}).then(tabs => {
let…

Forivin
- 14,780
- 27
- 106
- 199