Signal-iOS/SignalShareExtension/SignalShareExtension-Prefix.pch
Matthew Chen 5ca2991f0c Sketch out the SDS code generation.
* Copy SDS code generation and utility files from playground.
2019-04-11 09:15:28 -04:00

22 lines
519 B
Plaintext

//
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
//
#import <Availability.h>
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import <CocoaLumberjack/CocoaLumberjack.h>
#ifdef DEBUG
static const NSUInteger ddLogLevel = DDLogLevelAll;
#else
static const NSUInteger ddLogLevel = DDLogLevelInfo;
#endif
#import <SignalCoreKit/OWSAsserts.h>
#import <SignalServiceKit/OWSAnalytics.h>
#import <SignalCoreKit/NSObject+OWS.h>
#endif