react-native-zip-archive 6.1.2 → 7.0.1-dev.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 CHANGED
@@ -4,7 +4,7 @@ Zip archive utility for react-native
4
4
 
5
5
  ## Attention
6
6
 
7
- Starting from v6.1.1, it requires the iOS deployment higher than 15.5.5, more details on this thread: https://github.com/mockingbot/react-native-zip-archive/issues/305.
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
 
@@ -10,12 +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, '9.0'
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.2'
18
- s.compiler_flags = '-GCC_PREPROCESSOR_DEFINITIONS="HAVE_INTTYPES_H HAVE_PKCRYPT HAVE_STDINT_H HAVE_WZAES HAVE_ZLIB MZ_ZIP_NO_SIGNING $(inherited)"'
17
+ s.dependency 'SSZipArchive', '~>2.5.5'
19
18
 
20
19
  s.subspec 'Core' do |ss|
21
20
  ss.source_files = 'ios/*.{h,m}'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-native-zip-archive",
3
- "version": "6.1.2",
4
3
  "description": "A little wrapper on ZipArchive for react-native",
4
+ "version": "7.0.1-dev.0",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",