Skip to content

Commit 0f0a02a

Browse files
Add package for DocC and disable auto signing on package target
1 parent 28a0c8a commit 0f0a02a

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

Package.swift

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,10 @@ let package = Package(
2929
resources: [.process("Resources")]
3030
)
3131
]
32-
)
32+
)
33+
34+
#if swift(>=5.6)
35+
package.dependencies.append(
36+
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
37+
)
38+
#endif

StreamChatSwiftUI.xcodeproj/project.pbxproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2106,10 +2106,10 @@
21062106
isa = XCBuildConfiguration;
21072107
buildSettings = {
21082108
CLANG_ENABLE_MODULES = YES;
2109-
CODE_SIGN_STYLE = Automatic;
2109+
CODE_SIGN_STYLE = Manual;
21102110
CURRENT_PROJECT_VERSION = 1;
21112111
DEFINES_MODULE = YES;
2112-
DEVELOPMENT_TEAM = EHV7XZLAHA;
2112+
DEVELOPMENT_TEAM = "";
21132113
DYLIB_COMPATIBILITY_VERSION = 1;
21142114
DYLIB_CURRENT_VERSION = 1;
21152115
DYLIB_INSTALL_NAME_BASE = "@rpath";
@@ -2126,6 +2126,7 @@
21262126
MARKETING_VERSION = 4.8.0;
21272127
PRODUCT_BUNDLE_IDENTIFIER = io.getstream.iOS.StreamChatSwiftUI;
21282128
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
2129+
PROVISIONING_PROFILE_SPECIFIER = "";
21292130
SKIP_INSTALL = YES;
21302131
SUPPORTS_MACCATALYST = NO;
21312132
SWIFT_EMIT_LOC_STRINGS = YES;
@@ -2139,10 +2140,10 @@
21392140
isa = XCBuildConfiguration;
21402141
buildSettings = {
21412142
CLANG_ENABLE_MODULES = YES;
2142-
CODE_SIGN_STYLE = Automatic;
2143+
CODE_SIGN_STYLE = Manual;
21432144
CURRENT_PROJECT_VERSION = 1;
21442145
DEFINES_MODULE = YES;
2145-
DEVELOPMENT_TEAM = EHV7XZLAHA;
2146+
DEVELOPMENT_TEAM = "";
21462147
DYLIB_COMPATIBILITY_VERSION = 1;
21472148
DYLIB_CURRENT_VERSION = 1;
21482149
DYLIB_INSTALL_NAME_BASE = "@rpath";
@@ -2159,6 +2160,7 @@
21592160
MARKETING_VERSION = 4.8.0;
21602161
PRODUCT_BUNDLE_IDENTIFIER = io.getstream.iOS.StreamChatSwiftUI;
21612162
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
2163+
PROVISIONING_PROFILE_SPECIFIER = "";
21622164
SKIP_INSTALL = YES;
21632165
SUPPORTS_MACCATALYST = NO;
21642166
SWIFT_EMIT_LOC_STRINGS = YES;

0 commit comments

Comments
 (0)