Skip to content
This repository has been archived by the owner on Oct 9, 2024. It is now read-only.

Commit

Permalink
Add 'AppCapture' to special case code
Browse files Browse the repository at this point in the history
  • Loading branch information
medmonds committed Mar 24, 2016
1 parent 20cf87b commit a14bef1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SDKSymbolExtractor.m
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ - (instancetype)init {

- (void)collectSymbols {
for (CDFile *file in self.machOFilesByName.allValues) {
if (![file.filename containsString:@"UserTesting"]) {
if (![file.filename containsString:@"UserTesting"] && ![file.filename containsString:@"AppCapture"]) {
[self collectSymbolsFromExecutableAtPath:file.filename];
}
}
Expand Down
2 changes: 1 addition & 1 deletion Source/CDSymbolsGeneratorVisitor.m
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ - (BOOL)shouldSymbolsBeIgnored:(NSString *)symbolName {
- (void)willVisitObjectiveCProcessor:(CDObjectiveCProcessor *)processor {
NSString *importBaseName = processor.machOFile.importBaseName;

if (importBaseName && ![importBaseName containsString:@"UserTesting"]) {
if (importBaseName && (![importBaseName containsString:@"UserTesting"] && ![importBaseName containsString:@"AppCapture"])) {
NSLog(@"Processing external symbols from %@...", importBaseName);
_external = YES;
} else {
Expand Down

0 comments on commit a14bef1

Please sign in to comment.