react-native-zip-archive 6.1.1 → 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -1
- package/RNZipArchive.podspec +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Zip archive utility for react-native
|
|
4
4
|
|
|
5
|
+
## Attention
|
|
6
|
+
|
|
7
|
+
In order to comply with the new privacy policy of the App Store on iOS, you need to upgrade react-native-zip-archive to version 7.0.0, which requires the deployment target to be iOS 15.5 or later.
|
|
5
8
|
|
|
6
9
|
## Compatibility
|
|
7
10
|
|
|
@@ -21,7 +24,7 @@ npm install react-native-zip-archive --save
|
|
|
21
24
|
|
|
22
25
|
## Linking
|
|
23
26
|
|
|
24
|
-
For iOS, run the command below in
|
|
27
|
+
For iOS, run the command below in your app's root folder once the package has been installed
|
|
25
28
|
|
|
26
29
|
````bash
|
|
27
30
|
cd ./ios && pod install
|
package/RNZipArchive.podspec
CHANGED
|
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
|
|
|
10
10
|
s.license = package['license']
|
|
11
11
|
s.homepage = 'https://github.com/mockingbot/react-native-zip-archive'
|
|
12
12
|
s.source = { :git => 'https://github.com/mockingbot/react-native-zip-archive.git', :tag => "#{s.version}"}
|
|
13
|
-
s.platform = :ios, '
|
|
13
|
+
s.platform = :ios, '15.5'
|
|
14
14
|
s.preserve_paths = '*.js'
|
|
15
15
|
|
|
16
16
|
s.dependency 'React-Core'
|
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-zip-archive",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"description": "A little wrapper on ZipArchive for react-native",
|
|
5
5
|
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
|
+
"lint": "eslint index.js"
|
|
9
|
+
},
|
|
6
10
|
"repository": {
|
|
7
11
|
"type": "git",
|
|
8
12
|
"url": "git@github.com:mockingbot/react-native-zip-archive.git"
|
|
@@ -29,9 +33,5 @@
|
|
|
29
33
|
"peerDependencies": {
|
|
30
34
|
"react": ">=16.8.6",
|
|
31
35
|
"react-native": ">=0.60.0"
|
|
32
|
-
},
|
|
33
|
-
"scripts": {
|
|
34
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
35
|
-
"lint": "eslint index.js"
|
|
36
36
|
}
|
|
37
|
-
}
|
|
37
|
+
}
|