All Questions
21,603 questions
0
votes
0
answers
39
views
Detect single word text selection using javascript on android
I want to detect when a user finishes making a text selection on android, using cordova and javascript. This is possible for multi-word selections (see the gist by parthibeyond, added at the end of ...
0
votes
0
answers
22
views
Cordova android download file
I'm trying to download a ZIP file to use within my app.
However, when the file is larger than 50 megabytes, the download fails.
Does anyone know how I can increase this 50 megabyte limit?
My code is:
...
0
votes
1
answer
51
views
"Version code 10000 has already been used. Try another version code."
I'm trying to upload a second version of my app for internal testing on google play console, but I'm getting the error "Version code 10000 has already been used. Try another version code." ...
0
votes
0
answers
36
views
What is the correct way to reference the OutlineAndroidLib file path to build the outline application?
After executing npm run action client/src/cordova/build android command, every process works fine for building the app, but at the end, there is an error:
ERROR(spawn_stream): node --trace-uncaught /...
2
votes
1
answer
51
views
CORDOVA: I can DOWNLOAD 30 MB, but not 60 MB ? (cordova-plugin-file)
I am using this implementation, and I can download up to ~30 MB of data on my A53 Samsung Android device with it:
// File download
function downloadResult(taskId) {
cordova.plugin.http....
1
vote
1
answer
29
views
Add windowSplashScreenBehavior to themes.xml in Cordova app
When opening my cordova app from deep links, the Android splash screen icon doesn't show.
I found out this is by design in Android, and to have it show, I need to add this to the theme style:
<item ...
1
vote
1
answer
45
views
UntypedFormControl's valid property always returning false
I am working on a ionic cordova-angular project and I have a screen with an input field defined like this in html file.
<div class="inputdiv">
<ion-label class="...
0
votes
0
answers
44
views
Ionic Cordova Camera plugin issue with Android 13
I am working on a ionic cordova project and I am trying to integrate a functionality to take images from either camera or pick from gallery in base64 and for this functionality I am using cordova ...
0
votes
0
answers
38
views
Cordova App suddenly can't open local databases
I have an app I developed using Cordova, it's been running fine for a few years. I do update the app and recompile periodically. The current version has been on the tablet for about a month, and I ...
0
votes
0
answers
68
views
Set orientation to landscape for tablets, portrait for phones
I'm using the cordova-plugin-screen-orientation plugin and have followed all of the instructions I can find for locking orientation and nothing is working. I'm running the application in Android ...
0
votes
0
answers
27
views
cordova plugin diagnostic getCameraAuthorizationStatus returns DENIED_ALWAYS
Experienced on Android 13 and above devices:
getCameraAuthorizationStatus returns DENIED_ALWAYS even if the camera permissions are already allowed.
As stated in the cordova-plugin-diagnostic ...
0
votes
0
answers
34
views
Problem with interstitial in admob-plus-cordova 2.0.0-alpha.19
I have some issue and I have been struggling with this problem for a long time...
My code:
<button class="sem-show-ad">Show ad</button>
<script src="cordova.js">&...
1
vote
0
answers
46
views
net::ERR_UNKNOWN_URL_SCHEME error Vue JS Cordova
I'm working on a mobile vue JS with Cordova application. We build our application using Monaca IDE. We have a link in our app which opens a LINE invitation link.
In the link, we have to submit a form &...
0
votes
0
answers
46
views
AngularFireMessaging requestPermission not functioning only on android cordova app
I am working on an ionic cordova application,
I have implemented the @angular/fire/compat/messaging plugin
I have the following code
requestPermission() {
console.log('requestPermission()');
this....
0
votes
1
answer
44
views
How can I prevent Android downloads from failing?
I am using Cordova 12 to modify an existing Android application in order to try and make it compatible with Android API 34 (Android 14). The app must download thousands of small images before being ...