Houdhey commented on issue #797: URL: https://github.com/apache/cordova-plugin-camera/issues/797#issuecomment-1196412040
> breautek I tried adding the permissions as said in the Android doc https://developer.android.com/about/versions/13/behavior-changes-13 Like this : ```<manifest ...> <!-- Required only if your app targets Android 13. --> <!-- Declare one or more the following permissions only if your app needs to access data that's protected by them. --> <uses-permission android:name="android.permission.READ_MEDIA_IMAGES" /> <uses-permission android:name="android.permission.READ_MEDIA_AUDIO" /> <uses-permission android:name="android.permission.READ_MEDIA_VIDEO" /> <!-- Required to maintain app compatibility. --> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="32" /> <application ...> ... </application> </manifest>``` But it didn't change. "Cannot open camera : 20" , "Cannot open gallery : 20" -- 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 comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
