Re: [PR] fix(ios): Entry.toURL() to produce DOM-usable uri when using scheme-hosted webview [cordova-plugin-file]

2024-10-29 Thread via GitHub
breautek commented on PR #642: URL: https://github.com/apache/cordova-plugin-file/pull/642#issuecomment-2445782453 I'm putting this in draft. Good news is, this PR actually addresses that failing test that we've had for some time: > resolveLocalFileSystemURL for cdvfile

[PR] fix(test): file.spec.131 moveTo may fail due to read order assumption [cordova-plugin-file]

2024-10-29 Thread via GitHub
breautek opened a new pull request, #643: URL: https://github.com/apache/cordova-plugin-file/pull/643 ### Platforms affected tests ### Motivation and Context On iOS (and I think any file api I've ever used), reading directories does not define any particu

[PR] fix(ios): Entry.toURL() to produce DOM-usable uri when using scheme-hosted webview [cordova-plugin-file]

2024-10-29 Thread via GitHub
breautek opened a new pull request, #642: URL: https://github.com/apache/cordova-plugin-file/pull/642 ### Platforms affected iOS ### Motivation and Context Entry's `toURL()` method is intended to produce a DOM-usable URIs. This works as intended

Re: [I] No Image Data on Android 12 [cordova-plugin-camera]

2024-10-29 Thread via GitHub
breautek commented on issue #900: URL: https://github.com/apache/cordova-plugin-camera/issues/900#issuecomment-2445619036 Can you try testing the dev build? ``` cordova plugin remove cordova-plugin-camera cordova plugin add https://github.com/apache/cordova-plugin-camera.git

Re: [D] Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? [cordova]

2024-10-29 Thread via GitHub
GitHub user breautek added a comment to the discussion: Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? CORS is a browser mechanism. So it's tied to all browser features. There is no way to use the browser `fetch` implementation and disable CORs. The web

Re: [D] Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? [cordova]

2024-10-29 Thread via GitHub
GitHub user gslin closed a discussion: Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? On Cordova 12, I want to access resources not controlled by myself (i.e. I can't add CORS in the response header), on Android platform. I know it's impossible on bro

Re: [D] Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? [cordova]

2024-10-29 Thread via GitHub
GitHub user gslin closed the discussion with a comment: Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? Thanks, so it looks like using 3rd-party plugins like `cordova-plugin-advanced-http` is the only approach to bypass CORS mechanism, if the server can

Re: [D] Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? [cordova]

2024-10-29 Thread via GitHub
GitHub user breautek closed the discussion with a comment: Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? That would be your best bet yes. I can't vouch for any particular plugin but using the native network stack will not be bound by CORs. There are "

Re: [D] Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? [cordova]

2024-10-29 Thread via GitHub
GitHub user breautek added a comment to the discussion: Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? It's a layer to lock down the webview further. Based on [Widget Access Request Policy](https://www.w3.org/TR/widgets-access/) specification. The webv

Re: [D] Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? [cordova]

2024-10-29 Thread via GitHub
GitHub user gslin added a comment to the discussion: Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? Thanks for the clarification. If there is no way to bypass `fetch()`'s CORS requirement, what's the purpose of ``, mentioned in https://cordova.apache.

Re: [D] Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? [cordova]

2024-10-29 Thread via GitHub
GitHub user gslin edited a discussion: Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? On Cordova 12, I want to access resources not controlled by myself (i.e. I can't add CORS in the response header), on Android platform. I know it's impossible on bro

Re: [D] Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? [cordova]

2024-10-29 Thread via GitHub
GitHub user gslin edited a discussion: Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? On Cordova 12, I want to access resources not controlled by myself (i.e. I can't add CORS in the response header), on Android platform. I know it's impossible on bro

Re: [D] Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? [cordova]

2024-10-29 Thread via GitHub
GitHub user gslin edited a discussion: Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? On Cordova 12, I want to access resources not controlled by myself (i.e. I can't add CORS in the response header), on Android platform. I know it's impossible on bro

Re: [D] Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? [cordova]

2024-10-29 Thread via GitHub
GitHub user gslin edited a discussion: Is there any way to bypass CORS requirement with native `fetch()`, on Android platform? On Cordova 12, I want to access resources not controlled by myself (i.e. I can't add CORS in the response header), on Android platform. I know it's impossible on bro

Re: [I] iOS 18 requires text input focus before accepting key events [cordova-ios]

2024-10-29 Thread via GitHub
adammeyer commented on issue #1492: URL: https://github.com/apache/cordova-ios/issues/1492#issuecomment-2445334580 Confirmed issue still exists in iOS 18.1. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above

[PR] (browser) Added browser platform [cordova-plugin-geolocation]

2024-10-29 Thread via GitHub
andreszs opened a new pull request, #282: URL: https://github.com/apache/cordova-plugin-geolocation/pull/282 ### Platforms affected - Browser (added by PR) ### Motivation and Context - Plugin throwed error on brower platform, now it works normally. ### Description - Add

Re: [I] allowEdit not working when sourceType is PHOTOLIBRARY [cordova-plugin-camera]

2024-10-29 Thread via GitHub
breautek closed issue #393: allowEdit not working when sourceType is PHOTOLIBRARY URL: https://github.com/apache/cordova-plugin-camera/issues/393 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

Re: [I] allowEdit not working when sourceType is PHOTOLIBRARY [cordova-plugin-camera]

2024-10-29 Thread via GitHub
breautek commented on issue #393: URL: https://github.com/apache/cordova-plugin-camera/issues/393#issuecomment-2445296902 We are deprecating the `allowEdit` feature and will no longer provide support for it. In brief, the feature is unreliable cross plaform as it depends on image manipulat

Re: [I] File Download and Access Issues on iOS 17.5.1 with Cordova [cordova-plugin-file]

2024-10-29 Thread via GitHub
breautek commented on issue #628: URL: https://github.com/apache/cordova-plugin-file/issues/628#issuecomment-2444299178 This would be specific to iOS but I've been told that since the addition of schemes on iOS there is a `WKWebKit.convertFilePath` API available in JS. It's not ideal

Re: [I] Android 14 - Exif not being returned from the camera [cordova-plugin-camera]

2024-10-29 Thread via GitHub
breautek commented on issue #916: URL: https://github.com/apache/cordova-plugin-camera/issues/916#issuecomment-2444224953 Are you able to confirm if a particular image has location information in the exif by some other means? (Perhaps by pulling the image directly over ADB or over USB)

Re: [I] [Android] Remove broad photo/video permissions and use a system picker - Google Play Policy deadline 2024-08 [cordova-plugin-media-capture]

2024-10-29 Thread via GitHub
mirko77 commented on issue #288: URL: https://github.com/apache/cordova-plugin-media-capture/issues/288#issuecomment-2444093410 Any updates? Or shall we just use @bmarsaud fork for the time being? -- This is an automated message from the Apache Git Service. To respond to the message, plea

Re: [I] App crash on `captureVideo()` on android 14. [cordova-plugin-media-capture]

2024-10-29 Thread via GitHub
mirko77 commented on issue #300: URL: https://github.com/apache/cordova-plugin-media-capture/issues/300#issuecomment-2444178149 @Saqib92 the logcat output might be helpful. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub

Re: [PR] fix(android): remove broad media permissions [cordova-plugin-media-capture]

2024-10-29 Thread via GitHub
mirko77 commented on code in PR #295: URL: https://github.com/apache/cordova-plugin-media-capture/pull/295#discussion_r1820722629 ## plugin.xml: ## @@ -78,11 +78,8 @@ xmlns:android="http://schemas.android.com/apk/res/android"; - -

Re: [PR] deprecation: allowEdit [cordova-plugin-camera]

2024-10-29 Thread via GitHub
breautek commented on PR #914: URL: https://github.com/apache/cordova-plugin-camera/pull/914#issuecomment-2444097834 > However, since this PR only adds a deprecation warning without actually removing the feature, we might be able to reach a consensus within this PR to include it in version

Re: [I] App crash on `captureVideo()` on android 14. [cordova-plugin-media-capture]

2024-10-29 Thread via GitHub
mirko77 commented on issue #300: URL: https://github.com/apache/cordova-plugin-media-capture/issues/300#issuecomment-2444090971 What is the output of logcat? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL abo

Re: [I] Android 35 StatusBarOverlaysWebView false not working [cordova-plugin-statusbar]

2024-10-29 Thread via GitHub
ksch10bob commented on issue #274: URL: https://github.com/apache/cordova-plugin-statusbar/issues/274#issuecomment-2444020640 @cmartin81 seems like a solution and not a temporarily fix to me. Thanks for that. -- This is an automated message from the Apache Git Service. To respond t

Re: [I] File Download and Access Issues on iOS 17.5.1 with Cordova [cordova-plugin-file]

2024-10-29 Thread via GitHub
andreafrancioni commented on issue #628: URL: https://github.com/apache/cordova-plugin-file/issues/628#issuecomment-2444003528 Hi breautek, its been long time since last time i tried using cached file on ios, there's been new implementation or have you implemented new functionality about t

Re: [I] Android 14 - Exif not being returned from the camera [cordova-plugin-camera]

2024-10-29 Thread via GitHub
JohnCastle4 commented on issue #916: URL: https://github.com/apache/cordova-plugin-camera/issues/916#issuecomment-2443970605 I have a suspicion that the Android OS has locked it down so the location permission can't be passed from the Cordova application to the camera. Can you confirm this

[I] Android 14 - Exif not being returned from the camera [cordova-plugin-camera]

2024-10-29 Thread via GitHub
JohnCastle4 opened a new issue, #916: URL: https://github.com/apache/cordova-plugin-camera/issues/916 # Bug Report ## Problem ### What is expected to happen? Exif data is returned - including geolocation ### What does actually happen? On Android 11 it works fine

Re: [I] No Image Data on Android 12 [cordova-plugin-camera]

2024-10-29 Thread via GitHub
s5nicolay-dev commented on issue #900: URL: https://github.com/apache/cordova-plugin-camera/issues/900#issuecomment-2443580239 Thank you for the suggestion. It sounds plausible that there is no image captured. For the record it works to select PHOTOLIBRARY source and upload an image,

Re: [I] iOS Not close camera after denied permissions [cordova-plugin-camera]

2024-10-29 Thread via GitHub
breautek commented on issue #440: URL: https://github.com/apache/cordova-plugin-camera/issues/440#issuecomment-2443129419 stale -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comme

Re: [PR] Implement stop() to close CAMERA or PHOTOLIBRARY [cordova-plugin-camera]

2024-10-29 Thread via GitHub
NityaSantosh26 commented on PR #873: URL: https://github.com/apache/cordova-plugin-camera/pull/873#issuecomment-2443372072 Hey @breautek , Can I expect this PR also to be part of v8? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to G