Skip to content

Commit 14cf708

Browse files
feat: xcode 16 support
1 parent 0b4f99c commit 14cf708

10 files changed

+1021
-1288
lines changed

examples/default/ios/InstabugTests/InstabugAPMTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#import "InstabugAPMBridge.h"
1212
#import <InstabugSDK/IBGTypes.h>
1313
#import <InstabugSDK/IBGAPM.h>
14-
#import "Instabug/Instabug.h"
14+
#import "InstabugSDK/InstabugSDK.h"
1515
#import "IBGConstants.h"
1616
#import "RNInstabug/IBGAPM+PrivateAPIs.h"
1717

examples/default/ios/InstabugTests/InstabugBugReportingTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#import "OCMock/OCMock.h"
1111
#import "InstabugBugReportingBridge.h"
1212
#import <InstabugSDK/IBGTypes.h>
13-
#import "Instabug/Instabug.h"
13+
#import "InstabugSDK/InstabugSDK.h"
1414
#import "IBGConstants.h"
1515

1616
@interface InstabugBugReportingTests : XCTestCase

examples/default/ios/InstabugTests/InstabugCrashReportingTests.m

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#import <XCTest/XCTest.h>
2-
#import "Instabug/Instabug.h"
2+
#import "InstabugSDK/InstabugSDK.h"
33
#import "InstabugCrashReportingBridge.h"
44
#import "OCMock/OCMock.h"
55
#import "Util/IBGCrashReporting+CP.h"
@@ -19,10 +19,10 @@ - (void)setUp {
1919
}
2020

2121
- (void)testSetEnabled {
22-
22+
2323
[self.bridge setEnabled:NO];
2424
XCTAssertFalse(IBGCrashReporting.enabled);
25-
25+
2626
[self.bridge setEnabled:YES];
2727
XCTAssertTrue(IBGCrashReporting.enabled);
2828

@@ -37,7 +37,7 @@ - (void)testSendJSCrash {
3737
[expectation fulfill];
3838
};
3939
RCTPromiseRejectBlock reject = ^(NSString *code, NSString *message, NSError *error) {};
40-
40+
4141
[self.bridge sendJSCrash:stackTrace resolver:resolve rejecter:reject];
4242

4343
[self waitForExpectations:@[expectation] timeout:1];
@@ -52,9 +52,9 @@ - (void)testSendNonFatalErrorJsonCrash {
5252
NSDictionary *userAttributes = @{ @"key" : @"value", };
5353
IBGNonFatalLevel ibgNonFatalLevel = IBGNonFatalLevelInfo;
5454

55-
55+
5656
[self.bridge sendHandledJSCrash:jsonCrash userAttributes:userAttributes fingerprint:fingerPrint nonFatalExceptionLevel:ibgNonFatalLevel resolver:resolve rejecter:reject];
57-
57+
5858
OCMVerify([self.mCrashReporting cp_reportNonFatalCrashWithStackTrace:jsonCrash
5959
level:IBGNonFatalLevelInfo
6060
groupingString:fingerPrint

examples/default/ios/InstabugTests/InstabugFeatureRequestsTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#import "OCMock/OCMock.h"
1111
#import "InstabugFeatureRequestsBridge.h"
1212
#import <InstabugSDK/IBGTypes.h>
13-
#import "Instabug/Instabug.h"
13+
#import "InstabugSDK/InstabugSDK.h"
1414
#import "IBGConstants.h"
1515

1616
@interface InstabugFeatureRequestsTests : XCTestCase

examples/default/ios/InstabugTests/InstabugRepliesTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#import "OCMock/OCMock.h"
1111
#import "InstabugRepliesBridge.h"
1212
#import <InstabugSDK/IBGTypes.h>
13-
#import "Instabug/Instabug.h"
13+
#import "InstabugSDK/InstabugSDK.h"
1414
#import "IBGConstants.h"
1515

1616
@interface InstabugRepliesTests : XCTestCase

examples/default/ios/InstabugTests/InstabugSampleTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
#import <XCTest/XCTest.h>
99
#import "OCMock/OCMock.h"
10-
#import "Instabug/Instabug.h"
10+
#import "InstabugSDK/InstabugSDK.h"
1111
#import "InstabugReactBridge.h"
1212
#import <InstabugSDK/IBGTypes.h>
1313
#import "IBGConstants.h"

examples/default/ios/InstabugTests/InstabugSessionReplayTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#import "OCMock/OCMock.h"
33
#import "InstabugSessionReplayBridge.h"
44
#import <InstabugSDK/IBGTypes.h>
5-
#import "Instabug/Instabug.h"
5+
#import "InstabugSDK/InstabugSDK.h"
66
#import "IBGConstants.h"
77

88
@interface InstabugSessionReplayTests : XCTestCase

examples/default/ios/InstabugTests/InstabugSurveysTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#import "OCMock/OCMock.h"
1111
#import "InstabugSurveysBridge.h"
1212
#import <InstabugSDK/IBGTypes.h>
13-
#import "Instabug/Instabug.h"
13+
#import "InstabugSDK/InstabugSDK.h"
1414
#import "IBGConstants.h"
1515

1616
@interface InstabugSurveysTests : XCTestCase

examples/default/ios/InstabugTests/RNInstabugTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#import <XCTest/XCTest.h>
22
#import "OCMock/OCMock.h"
3-
#import "Instabug/Instabug.h"
3+
#import "InstabugSDK/InstabugSDK.h"
44
#import <InstabugSDK/IBGTypes.h>
55
#import "RNInstabug.h"
66
#import "RNInstabug/Instabug+CP.h"

examples/default/yarn.lock

Lines changed: 1007 additions & 1274 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)