SignalServiceKit is currently a separate pod. This makes merges tedious and error-prone. Ultimately, it slows us down. It might've made sense as a standalone library before, but it's so tightly integrated now that it isn't useful to have it be separate. This changes that, and makes SignalServiceKit a "normal" target. IMO, most of this change isn't that exciting—just a bunch of changes to scaffolding. There's one slightly spicier change: our generated `Acknowledgements.plist` is now a little more clever. Co-authored-by: Max Radermacher <max@signal.org>
28 lines
634 B
Plaintext
28 lines
634 B
Plaintext
//
|
|
// Copyright (c) 2022 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#ifndef signalservicekitprefix
|
|
#define signalservicekitprefix
|
|
|
|
#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/NSObject+OWS.h>
|
|
#import <SignalCoreKit/OWSAsserts.h>
|
|
#import <SignalServiceKit/OWSAnalytics.h>
|
|
#import <SignalServiceKit/SSKAsserts.h>
|
|
#endif
|
|
|
|
#endif
|