GBA001/Pods/SwiftyDropbox/Source/SwiftyDropbox/Shared/Handwritten/SwiftyDropbox.h
Riley Testut 6cca0f244f Replaces frameworks with static libraries
As of iOS 13.3.1, apps installed with free developer accounts that contain embedded frameworks fail to launch. To work around this, we now link all dependencies via Cocoapods as static libraries.
2020-02-03 19:28:23 -08:00

25 lines
604 B
Objective-C

//
// SwiftyDropbox.h
// SwiftyDropbox
//
// Copyright © 2016 Dropbox. All rights reserved.
//
#import "TargetConditionals.h"
#if TARGET_OS_IPHONE
#import <UIKit/UIKit.h>
#else
#import <Cocoa/Cocoa.h>
#endif
//! Project version number for SwiftyDropbox.
FOUNDATION_EXPORT double SwiftyDropboxVersionNumber;
//! Project version string for SwiftyDropbox.
FOUNDATION_EXPORT const unsigned char SwiftyDropboxVersionString[];
// In this header, you should import all the public headers of your framework using statements like #import <SwiftyDropbox/PublicHeader.h
#import "DBChunkInputStream.h"