Post

Replies

Boosts

Views

Activity

Reply to helper app error "embedded binary not signed with the same certificate as parent app"
App sandbox doesn't seem to cause any issues, as I had it enabled before and even after removing it nothing changed, however you mentioned something about "Code sign on copy" being set which may be the cause of my problem, as it's not set to anything and I don't know what to set it to (this would also make sense because in the error it says that the helper app isn't codesigned, when in my settings it should be) Whenever I try to set "code sign on copy" to anything, it doesn't change as if rejecting my input, so I don't know what to do here.
Sep ’22
Reply to helper app doesn't seem to be doing anything on login
so I've fixed the issue by putting all of the code that loads the username and password into the function that runs when the internet is connected, so the final code looks something like this: monitor.pathUpdateHandler = { path in if path.status == .satisfied { let usernamestored = defaults!.string(forKey: "username")! ... let task = URLSession.shared.dataTask(with: request) { (data, response, error) in {...} task.resume() } }
Topic: Programming Languages SubTopic: Swift Tags:
Aug ’22
Reply to xcodebuild[56491:10396296] [MT] DVTAssertions: Warning in Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103
Getting the same issue trying to build a project in Github Actions on macOS 13 and Xcode 15.
Replies
Boosts
Views
Activity
Oct ’23
Reply to helper app error "embedded binary not signed with the same certificate as parent app"
I solved the problem by deleting the "copy files" phase that I had in my helper app, and instead putting it in my main app. Now the app builds and archives perfectly!
Replies
Boosts
Views
Activity
Sep ’22
Reply to helper app error "embedded binary not signed with the same certificate as parent app"
App sandbox doesn't seem to cause any issues, as I had it enabled before and even after removing it nothing changed, however you mentioned something about "Code sign on copy" being set which may be the cause of my problem, as it's not set to anything and I don't know what to set it to (this would also make sense because in the error it says that the helper app isn't codesigned, when in my settings it should be) Whenever I try to set "code sign on copy" to anything, it doesn't change as if rejecting my input, so I don't know what to do here.
Replies
Boosts
Views
Activity
Sep ’22
Reply to helper app error "embedded binary not signed with the same certificate as parent app"
Both of the apps are in the same project with automatic signing.
Replies
Boosts
Views
Activity
Sep ’22
Reply to helper app doesn't seem to be doing anything on login
so I've fixed the issue by putting all of the code that loads the username and password into the function that runs when the internet is connected, so the final code looks something like this: monitor.pathUpdateHandler = { path in if path.status == .satisfied { let usernamestored = defaults!.string(forKey: "username")! ... let task = URLSession.shared.dataTask(with: request) { (data, response, error) in {...} task.resume() } }
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Aug ’22