Skip to content

Commit 977a5a9

Browse files
Ron RadtkeRon Radtke
Ron Radtke
authored and
Ron Radtke
committed
Update:
* migration to new architecture
1 parent b9b3374 commit 977a5a9

File tree

3 files changed

+20
-13
lines changed

3 files changed

+20
-13
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ The project will be continued in this repository. React-Native-Blob-Util is full
1212

1313
# Version Compatibility Warning
1414

15-
react-native-blob-util version 0.10.16 and up is only compatible with react native 0.60 and up.
15+
react-native-blob-util version **0.17.0** and up is only compatible with react native **0.64** and up.
16+
17+
react-native-blob-util version **0.10.16** and up is only compatible with react native **0.60** and up.
1618

1719
## Features
1820

@@ -24,6 +26,11 @@ react-native-blob-util version 0.10.16 and up is only compatible with react nati
2426
- Blob, File, XMLHttpRequest polyfills that make browser-based library available in RN (experimental)
2527
- JSON stream supported base on [Oboe.js](https://github.com/jimhigson/oboe.js/) @jimhigson
2628

29+
## React Native New Architecture
30+
With Reacht Native 0.68.0 the switch to enable the new aritechture was introduced.
31+
Starting with version 0.17.0 this library introduces support for the new architecture as well. Of course the old architecture will still be supproted.
32+
Further information about it and how to use it you can find here: https://reactnative.dev/docs/next/the-new-architecture/landing-page
33+
2734
## Android 10 & 11
2835

2936
Android 10 introduced scoped storage for apps. Apps no longer can create own directories directly on the external storage or access files outside the apps own directories. With version 0.14.0 support for the media storage is implemented. For more information please see the chapter about the mediastore API.

examples/ReactNativeBlobUtil/package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@
1010
"lint": "eslint ."
1111
},
1212
"dependencies": {
13-
"react": "16.13.1",
14-
"react-native": "^0.63.0",
13+
"react": "18.1.0",
14+
"react-native": "^0.70.3",
1515
"react-native-windows": "^0.64.0",
16-
"react-native-blob-util": "^0.12.0"
16+
"react-native-blob-util": "^0.17.0"
1717
},
1818
"devDependencies": {
19-
"@babel/core": "^7.8.4",
20-
"@babel/runtime": "^7.8.4",
21-
"@react-native-community/eslint-config": "^1.1.0",
22-
"babel-jest": "^25.1.0",
23-
"eslint": "^6.5.1",
24-
"jest": "^25.1.0",
25-
"metro-react-native-babel-preset": "^0.59.0",
26-
"react-test-renderer": "16.13.1"
19+
"@babel/core": "^7.12.9",
20+
"@babel/runtime": "^7.12.5",
21+
"@react-native-community/eslint-config": "^2.0.0",
22+
"babel-jest": "^26.6.3",
23+
"eslint": "^7.32.0",
24+
"jest": "^26.6.3",
25+
"metro-react-native-babel-preset": "0.72.3",
26+
"react-test-renderer": "18.1.0"
2727
},
2828
"jest": {
2929
"preset": "react-native"

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.16.4",
3+
"version": "0.17.0",
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)