Post

Replies

Boosts

Views

Activity

Reply to Running an application as a Daemon
Well with Activity Monitor you could off course check if a daemon is running. You could also check it with code, for example in the container app which you use to distribute the daemon. let runningApps = NSWorkspace.shared.runningApplications let isRunning = runningApps.contains { $0.bundleIdentifier == "your-daemon-bundle-id" }
May ’21
Reply to AppStore appearance localised with global App name - How?
You can use the same app name in all localisations when that app name is still available in that localisation. The error you see means the name you want in that particular localisation is already taken. In this case by an app on your account. Are you creating multiple apps in App Store Connect, one for each localisation? Because you can add multiple localisations to one app in ASC. Just checking..
May ’21