react-native-zip-archive 6.1.2 → 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 +1 -1
- package/RNZipArchive.podspec +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ Zip archive utility for react-native
|
|
|
4
4
|
|
|
5
5
|
## Attention
|
|
6
6
|
|
|
7
|
-
|
|
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.
|
|
8
8
|
|
|
9
9
|
## Compatibility
|
|
10
10
|
|
package/RNZipArchive.podspec
CHANGED
|
@@ -10,11 +10,11 @@ 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'
|
|
17
|
-
s.dependency 'SSZipArchive', '~>2.
|
|
17
|
+
s.dependency 'SSZipArchive', '~>2.5.5'
|
|
18
18
|
s.compiler_flags = '-GCC_PREPROCESSOR_DEFINITIONS="HAVE_INTTYPES_H HAVE_PKCRYPT HAVE_STDINT_H HAVE_WZAES HAVE_ZLIB MZ_ZIP_NO_SIGNING $(inherited)"'
|
|
19
19
|
|
|
20
20
|
s.subspec 'Core' do |ss|
|