Skip to content

Commit dfc4d58

Browse files
author
Ron Radtke
committed
Updating Manifest for Android 10 if it is still using old storage
#23
1 parent 676a725 commit dfc4d58

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

android/src/main/AndroidManifest.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
2020

2121
<!-- Required to read and write the expansion files on shared storage -->
22-
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="28"/>
22+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="29"/>
23+
24+
<!-- Required to read and write the expansion files on shared storage for Android 11-->
25+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
2326

2427
<!-- Required to to download files without a notification-->
2528
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION"/>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-blob-util",
3-
"version": "0.13.4",
3+
"version": "0.13.5",
44
"description": "A module provides upload, download, and files access API. Supports file stream read/write for process large files.",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)