Skip to content

Commit 8c7cf2a

Browse files
feat: support xcode 16 (#574)
* feat: xcode 16 support * feat: xcode 16 support * feat: xcode 16 support * feat: xcode 16 support * feat: xcode 16 support * chore: update changelog --------- Co-authored-by: kholood <[email protected]>
1 parent afb33df commit 8c7cf2a

34 files changed

+53
-46
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# Changelog
22

3-
## [Unreleased]
3+
## [Unreleased](https://github.com/Instabug/Instabug-Flutter/compare/v14.3.0...dev)
44

55
### Added
66

7+
- Add support for xCode 16. ([#574](https://github.com/Instabug/Instabug-Flutter/pull/574))
8+
79
- Add support for BugReporting user consents. ([#573](https://github.com/Instabug/Instabug-Flutter/pull/573))
810

911
## [14.3.0](https://github.com/Instabug/Instabug-Flutter/compare/v14.1.0...14.3.0) (April 21, 2025)
@@ -18,12 +20,10 @@
1820

1921
- Bump Instabug Android SDK to v14.3.0 ([#569](https://github.com/Instabug/Instabug-Flutter/pull/569)). [See release notes](https://github.com/Instabug/Instabug-Android/releases/tag/v14.3.0).
2022

21-
2223
### Fixed
2324

2425
- Fixed an issue with `SetReproStepsConfig` on Android platform ([#543](https://github.com/Instabug/Instabug-Flutter/pull/543)).
2526

26-
2727
## [14.1.0](https://github.com/Instabug/Instabug-Flutter/compare/v14.0.0...v14.1.0) (January 2, 2025)
2828

2929
### Changed

example/ios/InstabugTests/ApmApiTests.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#import <XCTest/XCTest.h>
22
#import "OCMock/OCMock.h"
33
#import "ApmApi.h"
4-
#import "Instabug/IBGAPM.h"
5-
#import "Instabug/Instabug.h"
4+
#import "InstabugSDK/IBGAPM.h"
5+
#import "InstabugSDK/InstabugSDK.h"
66
#import "IBGAPM+PrivateAPIs.h"
77

88
@interface ApmApiTests : XCTestCase

example/ios/InstabugTests/BugReportingApiTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#import <XCTest/XCTest.h>
22
#import "OCMock/OCMock.h"
33
#import "BugReportingApi.h"
4-
#import "Instabug/IBGBugReporting.h"
4+
#import "InstabugSDK/IBGBugReporting.h"
55

66
@interface BugReportingApiTests : XCTestCase
77

example/ios/InstabugTests/CrashReportingApiTests.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#import <XCTest/XCTest.h>
22
#import "OCMock/OCMock.h"
33
#import "CrashReportingApi.h"
4-
#import "Instabug/IBGCrashReporting.h"
5-
#import "Instabug/Instabug.h"
4+
#import "InstabugSDK/IBGCrashReporting.h"
5+
#import "InstabugSDK/InstabugSDK.h"
66
#import "Util/Instabug+Test.h"
77
#import "Util/IBGCrashReporting+CP.h"
88

example/ios/InstabugTests/FeatureRequestsApiTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#import <XCTest/XCTest.h>
22
#import "OCMock/OCMock.h"
33
#import "FeatureRequestsApi.h"
4-
#import "Instabug/IBGFeatureRequests.h"
4+
#import "InstabugSDK/IBGFeatureRequests.h"
55

66
@interface FeatureRequestsApiTests : XCTestCase
77

example/ios/InstabugTests/InstabugApiTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#import <XCTest/XCTest.h>
33
#import "OCMock/OCMock.h"
44
#import "InstabugApi.h"
5-
#import "Instabug/Instabug.h"
5+
#import "InstabugSDK/InstabugSDK.h"
66
#import "Util/Instabug+Test.h"
77
#import "IBGNetworkLogger+CP.h"
88
#import "Flutter/Flutter.h"

example/ios/InstabugTests/InstabugLogApiTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#import <XCTest/XCTest.h>
22
#import "OCMock/OCMock.h"
33
#import "InstabugLogApi.h"
4-
#import "Instabug/IBGLog.h"
4+
#import "InstabugSDK/IBGLog.h"
55

66
@interface InstabugLogApiTests : XCTestCase
77

example/ios/InstabugTests/RepliesApiTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#import <XCTest/XCTest.h>
22
#import "OCMock/OCMock.h"
33
#import "RepliesApi.h"
4-
#import "Instabug/IBGReplies.h"
4+
#import "InstabugSDK/IBGReplies.h"
55

66
@interface RepliesApiTests : XCTestCase
77

example/ios/InstabugTests/SessionReplayApiTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#import <instabug_flutter/SessionReplayApi.h>
44
#import "OCMock/OCMock.h"
55
#import "SessionReplayApi.h"
6-
#import "Instabug/IBGSessionReplay.h"
6+
#import "InstabugSDK/IBGSessionReplay.h"
77

88
@interface SessionReplayApiTests : XCTestCase
99

example/ios/InstabugTests/SurveysApiTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#import <XCTest/XCTest.h>
22
#import "OCMock/OCMock.h"
33
#import "SurveysApi.h"
4-
#import "Instabug/IBGSurveys.h"
4+
#import "InstabugSDK/IBGSurveys.h"
55
#import "Util/IBGSurvey+Test.h"
66

77
@interface SurveysApiTests : XCTestCase

0 commit comments

Comments
 (0)