jfoclpf commented on code in PR #814:
URL:
https://github.com/apache/cordova-plugin-camera/pull/814#discussion_r1111331362
##########
plugin.xml:
##########
@@ -55,7 +55,9 @@
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
- <uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+ <uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="32" />
Review Comment:
As explained, do kindly amend here to:
```xml
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
/>
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES"
android:minSdkVersion="33" />
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO"
android:minSdkVersion="33" />
```
I tested on both API 32 and 33 and it builds and works just fine.
--
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]