File tree 4 files changed +7
-2
lines changed
Samples/macOS-SPM-CommandLine
4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ - fix: Build failure for SPM (#1284 )
5
6
- fix: Set app state on main thread when terminating (#1272 )
6
7
7
8
## 7.2.2
Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ let package = Package(
12
12
targets: [
13
13
. target(
14
14
name: " macOS-SPM-CommandLine " ,
15
- dependencies: [ " Sentry " ] )
15
+ dependencies: [ " Sentry " ] ,
16
+ swiftSettings: [
17
+ . unsafeFlags( [ " -warnings-as-errors " ] )
18
+ ] )
16
19
]
17
20
)
Original file line number Diff line number Diff line change 293
293
7B6D98ED24C703F8005502FA /* Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B6D98EC24C703F8005502FA /* Async.swift */; };
294
294
7B7A30C624B48321005A4C6E /* SentryCrashAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B7A30C524B48321005A4C6E /* SentryCrashAdapter.h */; };
295
295
7B7A30C824B48389005A4C6E /* SentryCrashAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B7A30C724B48389005A4C6E /* SentryCrashAdapter.m */; };
296
- 7B7A599526B692540060A676 /* SentryScreenFrames.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B7A599426B692540060A676 /* SentryScreenFrames.h */; };
296
+ 7B7A599526B692540060A676 /* SentryScreenFrames.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B7A599426B692540060A676 /* SentryScreenFrames.h */; settings = {ATTRIBUTES = (Public, ); }; };
297
297
7B7A599726B692F00060A676 /* SentryScreenFrames.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B7A599626B692F00060A676 /* SentryScreenFrames.m */; };
298
298
7B7D872C2486480B00D2ECFF /* SentryStacktraceBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B7D872B2486480B00D2ECFF /* SentryStacktraceBuilder.h */; };
299
299
7B7D872E2486482600D2ECFF /* SentryStacktraceBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B7D872D2486482600D2ECFF /* SentryStacktraceBuilder.m */; };
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ FOUNDATION_EXPORT const unsigned char SentryVersionString[];
34
34
#import " SentrySampleDecision.h"
35
35
#import " SentrySamplingContext.h"
36
36
#import " SentryScope.h"
37
+ #import " SentryScreenFrames.h"
37
38
#import " SentrySdkInfo.h"
38
39
#import " SentrySerializable.h"
39
40
#import " SentrySession.h"
You can’t perform that action at this time.
0 commit comments