diff --git a/plugins/dialog/README.md b/plugins/dialog/README.md index 63d71767..d498385a 100644 --- a/plugins/dialog/README.md +++ b/plugins/dialog/README.md @@ -71,6 +71,31 @@ Afterwards all the plugin's APIs are available through the JavaScript guest bind ``` +### Android Integration +In order to access media (like images and video) outside the app, make sure to include the following lines as required in your **AndroidManifest.xml** file like so: +```xml + + + + + + + + + + + + ...other permissions + +``` + +The relevant `AndroidManifest.xml`file is located in: +``` +/src-tauri/gen/android/app/src/main/AndroidManifest.xml +``` + +> **NOTE:** This is the only `AndroidManifest.xml` file that can be modified in the project. All other files in the project gets overwritten when the tauri app is built + ## Contributing PRs accepted. Please make sure to read the Contributing Guide before making a pull request.