Skip to content

Commit

Permalink
Merge pull request #129 from NickEntin/entin/modular-imports
Browse files Browse the repository at this point in the history
Use modular imports for cross-framework dependencies
  • Loading branch information
NickEntin authored Sep 17, 2021
2 parents 2a582c0 + 0a24198 commit 226a577
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// limitations under the License.
//

#import <CoreAardvark/ARKLogMessage.h>
@import CoreAardvark;


@interface ARKLogTableViewController (Private)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// limitations under the License.
//

#import <CoreAardvark/ARKLogMessage.h>
@import CoreAardvark;

#import "ARKScreenshotViewController.h"

Expand Down
3 changes: 1 addition & 2 deletions Sources/AardvarkMailUI/ARKEmailBugReporter.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,10 @@
// limitations under the License.
//

@import Aardvark;
@import MessageUI;
@import UIKit;

#import <Aardvark/Aardvark-Swift.h>

@class ARKBugReportAttachment;
@class ARKEmailBugReportConfiguration;
@class ARKEmailBugReporter;
Expand Down
11 changes: 2 additions & 9 deletions Sources/AardvarkMailUI/ARKEmailBugReporter.m
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,17 @@
// limitations under the License.
//

@import Aardvark;
@import CoreAardvark;
@import MessageUI;

#import <Aardvark/ARKScreenshotLogging.h>
#import <CoreAardvark/AardvarkDefines.h>
#import <CoreAardvark/ARKDefaultLogFormatter.h>
#import <CoreAardvark/ARKLogMessage.h>
#import <CoreAardvark/ARKLogStore.h>

#import "ARKEmailBugReporter.h"
#import "ARKEmailBugReporter_Testing.h"

#import "ARKEmailBugReportConfiguration.h"
#import "ARKEmailBugReportConfiguration_Protected.h"


#import <Aardvark/Aardvark-Swift.h>


NSString *const ARKScreenshotFlashAnimationKey = @"ScreenshotFlashAnimation";


Expand Down

0 comments on commit 226a577

Please sign in to comment.