Post

Replies

Boosts

Views

Activity

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() } }
Aug ’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.
Sep ’22