From users point of view I hope they mean really if you can create an account within an app, you should also be able to fully delete it with in an app. Off course you can offer deactivation so the user can return at a later point, but I as an user want to have full-delete-all-my-data kind of deletion.
Take a look at https://docs.fastlane.tools/actions/deliver/ this tool helps you update metadata in App Store Connect all localisations at once. Also handy for updates in the future. Not only the text meta data but also your localised screenshots.
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"
}
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..
From users point of view I hope they mean really if you can create an account within an app, you should also be able to fully delete it with in an app. Off course you can offer deactivation so the user can return at a later point, but I as an user want to have full-delete-all-my-data kind of deletion.
Take a look at https://docs.fastlane.tools/actions/deliver/ this tool helps you update metadata in App Store Connect all localisations at once. Also handy for updates in the future. Not only the text meta data but also your localised screenshots.
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"
}
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..