Skip to content

Commit aeb426d

Browse files
committed
fix(ios): CodeSign frameworks in final executable
It is required for UIKit for Mac
1 parent 80de65b commit aeb426d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/services/ios-project-service.ts

+1
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,7 @@ export class IOSProjectService extends projectServiceBaseLib.PlatformProjectServ
271271
const frameworkAddOptions: IXcode.Options = { customFramework: true };
272272
if (await this.isDynamicFramework(frameworkPath)) {
273273
frameworkAddOptions["embed"] = true;
274+
frameworkAddOptions["sign"] = true;
274275
}
275276

276277
const frameworkRelativePath = '$(SRCROOT)/' + this.getLibSubpathRelativeToProjectPath(frameworkPath, projectData);

0 commit comments

Comments
 (0)