Skip to content

Commit 2d1ac25

Browse files
authored
Merge pull request #47 from mockingbot/next
rename ssziparchive to avoid duplicating symbol
2 parents e849b19 + 15b6b06 commit 2d1ac25

File tree

9 files changed

+52
-52
lines changed

9 files changed

+52
-52
lines changed

RNZipArchive.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ Pod::Spec.new do |s|
2222
ss.public_header_files = ['ios/RNZipArchive.h']
2323
end
2424

25-
s.subspec 'SSZipArchive' do |ss|
26-
ss.source_files = 'ios/SSZipArchive/*.{h,m}', 'ios/SSZipArchive/aes/*.{h,c}', 'ios/SSZipArchive/minizip/*.{h,c}'
27-
ss.private_header_files = 'ios/SSZipArchive/*.h', 'ios/SSZipArchive/aes/*.h', 'ios/SSZipArchive/minizip/*.h'
25+
s.subspec 'RNZASSZipArchive' do |ss|
26+
ss.source_files = 'ios/RNZASSZipArchive/*.{h,m}', 'ios/RNZASSZipArchive/aes/*.{h,c}', 'ios/RNZASSZipArchive/minizip/*.{h,c}'
27+
ss.private_header_files = 'ios/RNZASSZipArchive/*.h', 'ios/RNZASSZipArchive/aes/*.h', 'ios/RNZASSZipArchive/minizip/*.h'
2828
end
2929

3030
end

ios/RNZipArchive.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
#else
1313
#import "RCTBridgeModule.h"
1414
#endif
15-
#import "SSZipArchive/SSZipArchive.h"
15+
#import "SSZipArchive/RNZASSZipArchive.h"
1616

17-
@interface RNZipArchive : NSObject<RCTBridgeModule, SSZipArchiveDelegate>
17+
@interface RNZipArchive : NSObject<RCTBridgeModule, RNZASSZipArchiveDelegate>
1818

1919
@end

ios/RNZipArchive.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ @implementation RNZipArchive
2929

3030
[self zipArchiveProgressEvent:0 total:1]; // force 0%
3131

32-
BOOL success = [SSZipArchive unzipFileAtPath:zipPath toDestination:destinationPath delegate:self];
32+
BOOL success = [RNZASSZipArchive unzipFileAtPath:zipPath toDestination:destinationPath delegate:self];
3333

3434
[self zipArchiveProgressEvent:1 total:1]; // force 100%
3535

@@ -49,7 +49,7 @@ @implementation RNZipArchive
4949

5050
[self zipArchiveProgressEvent:0 total:1]; // force 0%
5151

52-
BOOL success = [SSZipArchive createZipFileAtPath:destinationPath withContentsOfDirectory:zipPath];
52+
BOOL success = [RNZASSZipArchive createZipFileAtPath:destinationPath withContentsOfDirectory:zipPath];
5353

5454
[self zipArchiveProgressEvent:1 total:1]; // force 100%
5555

ios/RNZipArchive.xcodeproj/project.pbxproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
D02863C81E488F4600E15EE7 /* mztools.c in Sources */ = {isa = PBXBuildFile; fileRef = D02863B41E488F4600E15EE7 /* mztools.c */; };
2222
D02863C91E488F4600E15EE7 /* unzip.c in Sources */ = {isa = PBXBuildFile; fileRef = D02863B61E488F4600E15EE7 /* unzip.c */; };
2323
D02863CA1E488F4600E15EE7 /* zip.c in Sources */ = {isa = PBXBuildFile; fileRef = D02863B81E488F4600E15EE7 /* zip.c */; };
24-
D02863CB1E488F4600E15EE7 /* SSZipArchive.m in Sources */ = {isa = PBXBuildFile; fileRef = D02863BB1E488F4600E15EE7 /* SSZipArchive.m */; };
24+
D02863CB1E488F4600E15EE7 /* RNZASSZipArchive.m in Sources */ = {isa = PBXBuildFile; fileRef = D02863BB1E488F4600E15EE7 /* RNZASSZipArchive.m */; };
2525
/* End PBXBuildFile section */
2626

2727
/* Begin PBXCopyFilesBuildPhase section */
@@ -69,9 +69,9 @@
6969
D02863B71E488F4600E15EE7 /* unzip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unzip.h; sourceTree = "<group>"; };
7070
D02863B81E488F4600E15EE7 /* zip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = zip.c; sourceTree = "<group>"; };
7171
D02863B91E488F4600E15EE7 /* zip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = zip.h; sourceTree = "<group>"; };
72-
D02863BA1E488F4600E15EE7 /* SSZipArchive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SSZipArchive.h; sourceTree = "<group>"; };
73-
D02863BB1E488F4600E15EE7 /* SSZipArchive.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SSZipArchive.m; sourceTree = "<group>"; };
74-
D02863BC1E488F4600E15EE7 /* SSZipCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SSZipCommon.h; sourceTree = "<group>"; };
72+
D02863BA1E488F4600E15EE7 /* RNZASSZipArchive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNZASSZipArchive.h; sourceTree = "<group>"; };
73+
D02863BB1E488F4600E15EE7 /* RNZASSZipArchive.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNZASSZipArchive.m; sourceTree = "<group>"; };
74+
D02863BC1E488F4600E15EE7 /* RNZASSZipCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNZASSZipCommon.h; sourceTree = "<group>"; };
7575
D061F22A1E4887C4000350B4 /* libRNZipArchive.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libRNZipArchive.a; sourceTree = BUILT_PRODUCTS_DIR; };
7676
/* End PBXFileReference section */
7777

@@ -91,9 +91,9 @@
9191
children = (
9292
D028639A1E488F4600E15EE7 /* aes */,
9393
D02863B01E488F4600E15EE7 /* minizip */,
94-
D02863BA1E488F4600E15EE7 /* SSZipArchive.h */,
95-
D02863BB1E488F4600E15EE7 /* SSZipArchive.m */,
96-
D02863BC1E488F4600E15EE7 /* SSZipCommon.h */,
94+
D02863BA1E488F4600E15EE7 /* RNZASSZipArchive.h */,
95+
D02863BB1E488F4600E15EE7 /* RNZASSZipArchive.m */,
96+
D02863BC1E488F4600E15EE7 /* RNZASSZipCommon.h */,
9797
);
9898
path = SSZipArchive;
9999
sourceTree = "<group>";
@@ -228,7 +228,7 @@
228228
D02863C11E488F4600E15EE7 /* entropy.c in Sources */,
229229
D02863C41E488F4600E15EE7 /* prng.c in Sources */,
230230
D02863C71E488F4600E15EE7 /* ioapi.c in Sources */,
231-
D02863CB1E488F4600E15EE7 /* SSZipArchive.m in Sources */,
231+
D02863CB1E488F4600E15EE7 /* RNZASSZipArchive.m in Sources */,
232232
D02863CA1E488F4600E15EE7 /* zip.c in Sources */,
233233
D02863C51E488F4600E15EE7 /* pwd2key.c in Sources */,
234234
D02863BD1E488F4600E15EE7 /* RNZipArchive.m in Sources */,

ios/SSZipArchive/SSZipArchive.h renamed to ios/SSZipArchive/RNZASSZipArchive.h

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,35 +6,35 @@
66
// Copyright (c) Sam Soffes 2010-2015. All rights reserved.
77
//
88

9-
#ifndef _SSZIPARCHIVE_H
10-
#define _SSZIPARCHIVE_H
9+
#ifndef _RNZASSZipARCHIVE_H
10+
#define _RNZASSZipARCHIVE_H
1111

1212
#import <Foundation/Foundation.h>
13-
#include "SSZipCommon.h"
13+
#include "RNZASSZipCommon.h"
1414

1515
NS_ASSUME_NONNULL_BEGIN
1616

17-
@protocol SSZipArchiveDelegate;
17+
@protocol RNZASSZipArchiveDelegate;
1818

19-
@interface SSZipArchive : NSObject
19+
@interface RNZASSZipArchive : NSObject
2020

2121
// Password check
2222
+ (BOOL)isFilePasswordProtectedAtPath:(NSString *)path;
2323

2424
// Unzip
2525
+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination;
26-
+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination delegate:(nullable id<SSZipArchiveDelegate>)delegate;
26+
+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination delegate:(nullable id<RNZASSZipArchiveDelegate>)delegate;
2727

2828
+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination overwrite:(BOOL)overwrite password:(nullable NSString *)password error:(NSError * *)error;
29-
+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination overwrite:(BOOL)overwrite password:(nullable NSString *)password error:(NSError * *)error delegate:(nullable id<SSZipArchiveDelegate>)delegate NS_REFINED_FOR_SWIFT;
29+
+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination overwrite:(BOOL)overwrite password:(nullable NSString *)password error:(NSError * *)error delegate:(nullable id<RNZASSZipArchiveDelegate>)delegate NS_REFINED_FOR_SWIFT;
3030

3131
+ (BOOL)unzipFileAtPath:(NSString *)path
3232
toDestination:(NSString *)destination
3333
preserveAttributes:(BOOL)preserveAttributes
3434
overwrite:(BOOL)overwrite
3535
password:(nullable NSString *)password
3636
error:(NSError * *)error
37-
delegate:(nullable id<SSZipArchiveDelegate>)delegate;
37+
delegate:(nullable id<RNZASSZipArchiveDelegate>)delegate;
3838

3939
+ (BOOL)unzipFileAtPath:(NSString *)path
4040
toDestination:(NSString *)destination
@@ -71,7 +71,7 @@ NS_ASSUME_NONNULL_BEGIN
7171

7272
@end
7373

74-
@protocol SSZipArchiveDelegate <NSObject>
74+
@protocol RNZASSZipArchiveDelegate <NSObject>
7575

7676
@optional
7777

@@ -90,4 +90,4 @@ NS_ASSUME_NONNULL_BEGIN
9090

9191
NS_ASSUME_NONNULL_END
9292

93-
#endif /* _SSZIPARCHIVE_H */
93+
#endif /* _RNZASSZipARCHIVE_H */

ios/SSZipArchive/SSZipArchive.m renamed to ios/SSZipArchive/RNZASSZipArchive.m

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// Created by Sam Soffes on 7/21/10.
66
// Copyright (c) Sam Soffes 2010-2015. All rights reserved.
77
//
8-
#import "SSZipArchive.h"
8+
#import "RNZASSZipArchive.h"
99
#include "unzip.h"
1010
#include "zip.h"
1111
#import "zlib.h"
@@ -15,11 +15,11 @@
1515

1616
#define CHUNK 16384
1717

18-
@interface SSZipArchive ()
18+
@interface RNZASSZipArchive ()
1919
+ (NSDate *)_dateWithMSDOSFormat:(UInt32)msdosDateTime;
2020
@end
2121

22-
@implementation SSZipArchive
22+
@implementation RNZASSZipArchive
2323
{
2424
NSString *_path;
2525
NSString *_filename;
@@ -71,12 +71,12 @@ + (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination o
7171
return [self unzipFileAtPath:path toDestination:destination preserveAttributes:YES overwrite:overwrite password:password error:error delegate:nil progressHandler:nil completionHandler:nil];
7272
}
7373

74-
+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination delegate:(nullable id<SSZipArchiveDelegate>)delegate
74+
+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination delegate:(nullable id<RNZASSZipArchiveDelegate>)delegate
7575
{
7676
return [self unzipFileAtPath:path toDestination:destination preserveAttributes:YES overwrite:YES password:nil error:nil delegate:delegate progressHandler:nil completionHandler:nil];
7777
}
7878

79-
+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination overwrite:(BOOL)overwrite password:(nullable NSString *)password error:(NSError **)error delegate:(nullable id<SSZipArchiveDelegate>)delegate
79+
+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination overwrite:(BOOL)overwrite password:(nullable NSString *)password error:(NSError **)error delegate:(nullable id<RNZASSZipArchiveDelegate>)delegate
8080
{
8181
return [self unzipFileAtPath:path toDestination:destination preserveAttributes:YES overwrite:overwrite password:password error:error delegate:delegate progressHandler:nil completionHandler:nil];
8282
}
@@ -105,7 +105,7 @@ + (BOOL)unzipFileAtPath:(NSString *)path
105105
overwrite:(BOOL)overwrite
106106
password:(nullable NSString *)password
107107
error:(NSError * *)error
108-
delegate:(nullable id<SSZipArchiveDelegate>)delegate
108+
delegate:(nullable id<RNZASSZipArchiveDelegate>)delegate
109109
{
110110
return [self unzipFileAtPath:path toDestination:destination preserveAttributes:preserveAttributes overwrite:overwrite password:password error:error delegate:delegate progressHandler:nil completionHandler:nil];
111111
}
@@ -116,7 +116,7 @@ + (BOOL)unzipFileAtPath:(NSString *)path
116116
overwrite:(BOOL)overwrite
117117
password:(NSString *)password
118118
error:(NSError **)error
119-
delegate:(id<SSZipArchiveDelegate>)delegate
119+
delegate:(id<RNZASSZipArchiveDelegate>)delegate
120120
progressHandler:(void (^)(NSString *entry, unz_file_info zipInfo, long entryNumber, long total))progressHandler
121121
completionHandler:(void (^)(NSString *path, BOOL succeeded, NSError *error))completionHandler
122122
{
@@ -125,7 +125,7 @@ + (BOOL)unzipFileAtPath:(NSString *)path
125125
if (zip == NULL)
126126
{
127127
NSDictionary *userInfo = @{NSLocalizedDescriptionKey: @"failed to open zip file"};
128-
NSError *err = [NSError errorWithDomain:@"SSZipArchiveErrorDomain" code:-1 userInfo:userInfo];
128+
NSError *err = [NSError errorWithDomain:@"RNZASSZipArchiveErrorDomain" code:-1 userInfo:userInfo];
129129
if (error)
130130
{
131131
*error = err;
@@ -148,7 +148,7 @@ + (BOOL)unzipFileAtPath:(NSString *)path
148148
if (unzGoToFirstFile(zip) != UNZ_OK)
149149
{
150150
NSDictionary *userInfo = @{NSLocalizedDescriptionKey: @"failed to open first file in zip file"};
151-
NSError *err = [NSError errorWithDomain:@"SSZipArchiveErrorDomain" code:-2 userInfo:userInfo];
151+
NSError *err = [NSError errorWithDomain:@"RNZASSZipArchiveErrorDomain" code:-2 userInfo:userInfo];
152152
if (error)
153153
{
154154
*error = err;
@@ -293,7 +293,7 @@ + (BOOL)unzipFileAtPath:(NSString *)path
293293
success = NO;
294294
break;
295295
}
296-
NSLog(@"[SSZipArchive] Error: %@", err.localizedDescription);
296+
NSLog(@"[RNZASSZipArchive] Error: %@", err.localizedDescription);
297297
}
298298

299299
if ([fileManager fileExistsAtPath:fullPath] && !isDirectory && !overwrite) {
@@ -335,7 +335,7 @@ + (BOOL)unzipFileAtPath:(NSString *)path
335335
if (attr) {
336336
if ([fileManager setAttributes:attr ofItemAtPath:fullPath error:nil] == NO) {
337337
// Can't set attributes
338-
NSLog(@"[SSZipArchive] Failed to set attributes - whilst setting modification date");
338+
NSLog(@"[RNZASSZipArchive] Failed to set attributes - whilst setting modification date");
339339
}
340340
}
341341
}
@@ -355,7 +355,7 @@ + (BOOL)unzipFileAtPath:(NSString *)path
355355
// Update attributes
356356
if ([fileManager setAttributes:attrs ofItemAtPath:fullPath error:nil] == NO) {
357357
// Unable to set the permissions attribute
358-
NSLog(@"[SSZipArchive] Failed to set attributes - whilst setting permissions");
358+
NSLog(@"[RNZASSZipArchive] Failed to set attributes - whilst setting permissions");
359359
}
360360

361361
#if !__has_feature(objc_arc)
@@ -434,10 +434,10 @@ + (BOOL)unzipFileAtPath:(NSString *)path
434434
NSError * err = nil;
435435
for (NSDictionary * d in directoriesModificationDates) {
436436
if (![[NSFileManager defaultManager] setAttributes:@{NSFileModificationDate: d[@"modDate"]} ofItemAtPath:d[@"path"] error:&err]) {
437-
NSLog(@"[SSZipArchive] Set attributes failed for directory: %@.", d[@"path"]);
437+
NSLog(@"[RNZASSZipArchive] Set attributes failed for directory: %@.", d[@"path"]);
438438
}
439439
if (err) {
440-
NSLog(@"[SSZipArchive] Error setting directory file modification date attribute: %@",err.localizedDescription);
440+
NSLog(@"[RNZASSZipArchive] Error setting directory file modification date attribute: %@",err.localizedDescription);
441441
}
442442
}
443443
#if !__has_feature(objc_arc)
@@ -458,7 +458,7 @@ + (BOOL)unzipFileAtPath:(NSString *)path
458458
if (crc_ret == UNZ_CRCERROR)
459459
{
460460
NSDictionary *userInfo = @{NSLocalizedDescriptionKey: @"crc check failed for file"};
461-
retErr = [NSError errorWithDomain:@"SSZipArchiveErrorDomain" code:-3 userInfo:userInfo];
461+
retErr = [NSError errorWithDomain:@"RNZASSZipArchiveErrorDomain" code:-3 userInfo:userInfo];
462462
}
463463

464464
if (error) {
@@ -485,20 +485,20 @@ + (BOOL)unzipFileAtPath:(NSString *)path
485485
#pragma mark - Zipping
486486
+ (BOOL)createZipFileAtPath:(NSString *)path withFilesAtPaths:(NSArray *)paths
487487
{
488-
return [SSZipArchive createZipFileAtPath:path withFilesAtPaths:paths withPassword:nil];
488+
return [RNZASSZipArchive createZipFileAtPath:path withFilesAtPaths:paths withPassword:nil];
489489
}
490490
+ (BOOL)createZipFileAtPath:(NSString *)path withContentsOfDirectory:(NSString *)directoryPath{
491-
return [SSZipArchive createZipFileAtPath:path withContentsOfDirectory:directoryPath withPassword:nil];
491+
return [RNZASSZipArchive createZipFileAtPath:path withContentsOfDirectory:directoryPath withPassword:nil];
492492
}
493493

494494
+ (BOOL)createZipFileAtPath:(NSString *)path withContentsOfDirectory:(NSString *)directoryPath keepParentDirectory:(BOOL)keepParentDirectory{
495-
return [SSZipArchive createZipFileAtPath:path withContentsOfDirectory:directoryPath keepParentDirectory:keepParentDirectory withPassword:nil];
495+
return [RNZASSZipArchive createZipFileAtPath:path withContentsOfDirectory:directoryPath keepParentDirectory:keepParentDirectory withPassword:nil];
496496
}
497497

498498
+ (BOOL)createZipFileAtPath:(NSString *)path withFilesAtPaths:(NSArray *)paths withPassword:(NSString *)password
499499
{
500500
BOOL success = NO;
501-
SSZipArchive *zipArchive = [[SSZipArchive alloc] initWithPath:path];
501+
RNZASSZipArchive *zipArchive = [[RNZASSZipArchive alloc] initWithPath:path];
502502
if ([zipArchive open]) {
503503
for (NSString *filePath in paths) {
504504
[zipArchive writeFile:filePath withPassword:password];
@@ -522,7 +522,7 @@ + (BOOL)createZipFileAtPath:(NSString *)path withContentsOfDirectory:(NSString *
522522
BOOL success = NO;
523523

524524
NSFileManager *fileManager = nil;
525-
SSZipArchive *zipArchive = [[SSZipArchive alloc] initWithPath:path];
525+
RNZASSZipArchive *zipArchive = [[RNZASSZipArchive alloc] initWithPath:path];
526526

527527
if ([zipArchive open]) {
528528
// use a local filemanager (queue/thread compatibility)
@@ -745,7 +745,7 @@ - (BOOL)writeData:(NSData *)data filename:(nullable NSString *)filename withPass
745745

746746
- (BOOL)close
747747
{
748-
NSAssert((_zip != NULL), @"[SSZipArchive] Attempting to close an archive which was never opened");
748+
NSAssert((_zip != NULL), @"[RNZASSZipArchive] Attempting to close an archive which was never opened");
749749
zipClose(_zip, NULL);
750750
return YES;
751751
}
@@ -795,7 +795,7 @@ + (NSDate *)_dateWithMSDOSFormat:(UInt32)msdosDateTime
795795

796796
NSDateComponents *components = [[NSDateComponents alloc] init];
797797

798-
NSAssert(0xFFFFFFFF == (kYearMask | kMonthMask | kDayMask | kHourMask | kMinuteMask | kSecondMask), @"[SSZipArchive] MSDOS date masks don't add up");
798+
NSAssert(0xFFFFFFFF == (kYearMask | kMonthMask | kDayMask | kHourMask | kMinuteMask | kSecondMask), @"[RNZASSZipArchive] MSDOS date masks don't add up");
799799

800800
[components setYear:1980 + ((msdosDateTime & kYearMask) >> 25)];
801801
[components setMonth:(msdosDateTime & kMonthMask) >> 21];
@@ -813,4 +813,4 @@ + (NSDate *)_dateWithMSDOSFormat:(UInt32)msdosDateTime
813813
return date;
814814
}
815815

816-
@end
816+
@end

ios/SSZipArchive/SSZipCommon.h renamed to ios/SSZipArchive/RNZASSZipCommon.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef SSZipCommon
2-
#define SSZipCommon
1+
#ifndef RNZASSZipCommon
2+
#define RNZASSZipCommon
33

44
/* tm_unz contain date/time info */
55
typedef struct tm_unz_s

ios/SSZipArchive/minizip/unzip.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#include "zlib.h"
2929
#include "unzip.h"
3030

31-
#include "SSZipCommon.h"
31+
#include "RNZASSZipCommon.h"
3232

3333
#ifdef STDC
3434
# include <stddef.h>

ios/SSZipArchive/minizip/unzip.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
See the accompanying LICENSE file for the full text of the license.
1515
*/
1616

17-
#include "SSZipCommon.h"
17+
#include "RNZASSZipCommon.h"
1818

1919
#ifndef _UNZ_H
2020
#define _UNZ_H

0 commit comments

Comments
 (0)