Skip to content

Commit 79f0b62

Browse files
Merge pull request #97 from apivideo/feature/java_readme_android_permissions
docs(java): android: improve permission guide
2 parents 93ec2f7 + bb92a80 commit 79f0b62

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ To upload a video, you have 3 differents methods:
117117

118118
## Permissions
119119

120-
You have to add the following permissions in your `AndroidManifest.xml`:
120+
If your video files are located in the media store, you have to add the following permissions in your `AndroidManifest.xml`:
121121

122122
```xml
123123
<uses-permission android:name="android.permission.INTERNET" />
@@ -131,6 +131,8 @@ You have to add the following permissions in your `AndroidManifest.xml`:
131131

132132
Your application also has to dynamically request the `android.permission.READ_EXTERNAL_STORAGE` permission to upload videos.
133133

134+
If your video files are located in the app-specific storage, you don't need to request any permissions nor add any permissions to your `AndroidManifest.xml`.
135+
134136
### WorkManager
135137

136138
To upload with the `WorkManager`, you also have to add the following lines in your `AndroidManifest.xml`:

0 commit comments

Comments
 (0)