Houdhey

Results 12 comments of Houdhey

@breautek Do you know when we will have any informations about this Android 11 problem and Cordova? Is someone working on this?

> Google play store will not allow publishing ionic applications with `android:requestLegacyExternalStorage:true` 5 Mai . > > Are there any alternative solution to keep this plugin work ? Or use...

Can we have an update on this bug please? I think Android 13 is gonna be released soon

> breautek I tried adding the permissions as said in the Android doc https://developer.android.com/about/versions/13/behavior-changes-13 Like this : ``` ... ``` But it didn't change. "Cannot open camera : 20" ,...

After investigating, the error comes from this method on CameraLauncher.java file : ``` public void onRequestPermissionResult(int requestCode, String[] permissions, int[] grantResults) { for (int r : grantResults) { System.out.println("PHOTO DEBUG...

Hello @jfoclpf Yes, there is a similar Pull Request doing this : https://github.com/apache/cordova-plugin-camera/pull/814/files Now the problem is fixed, I can't reproduce the bug. Thank you for your investigation @jfoclpf ,...

Commenting the code is not sufficient, so the PR solved it, that's the hack i was using actually but i should've make a PR

Actually, at the time I opened this bug, I was using this plugin with Capacitor 2.0 (I don't know if they totally replaced Cordova). So my installation process was :...

> Hi , I tried to use the PR but i still can't build 🤔 I got this error : ![image](https://user-images.githubusercontent.com/8873491/217055862-0c8cc5a4-1ecd-4913-a582-c0de7827d60a.png) > > This is my setup : ![image](https://user-images.githubusercontent.com/8873491/217055889-88aaa38c-638e-4d63-9cca-4be74537bbd5.png) ![image](https://user-images.githubusercontent.com/8873491/217055914-8baefda3-e9a9-4d2e-b53d-d1a3e006fb04.png)...

In your Android Manifest, add this ```android:requestLegacyExternalStorage="true"``` in the application tag.