session-ios/Signal/Signal-Prefix.pch

26 lines
787 B
Plaintext
Raw Normal View History

2014-05-06 19:41:08 +02:00
//
2017-02-08 20:25:31 +01:00
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
2014-05-06 19:41:08 +02:00
//
#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
2017-01-06 15:01:20 +01:00
#import <SignalServiceKit/Asserts.h>
2017-02-13 17:40:30 +01:00
#import <SignalServiceKit/Constraints.h>
#import <SignalServiceKit/OWSAnalytics.h>
2017-02-08 20:25:31 +01:00
#import <SignalServiceKit/OWSDispatch.h>
#import "iOSVersions.h"
#define SignalAlertView(title,msg) [[[UIAlertView alloc] initWithTitle:title message:msg delegate:nil cancelButtonTitle:NSLocalizedString(@"OK", @"") otherButtonTitles:nil, nil] show]
2014-05-06 19:41:08 +02:00
#endif