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" }
Topic: App & System Services SubTopic: Core OS Tags:
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
Reply to Web development environment
That is Xcode
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’21
Reply to Question about FB analytics integration
Yes it is necessary because you collect and share usage details of the user with Facebook.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’21
Reply to Update metadata after review
No. You need to cancel and upload a new build with an increased build number. Some parts you can change during review.
Replies
Boosts
Views
Activity
Jun ’21
Reply to Guideline 2.1 - Performance - App Completeness
What is your question?
Replies
Boosts
Views
Activity
Jun ’21
Reply to New Slack channel for Safari extension developers
Great idea send you an email to get an invite.
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’21
Reply to System Menubar icon macOS
https://developer.apple.com/documentation/appkit/nsstatusbar/
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’21
Reply to Screen Time for your self
Filed a feedback: FB9169765
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’21
Reply to Test
Test report function??
Replies
Boosts
Views
Activity
Jun ’21
Reply to List of Focus types
You can hook into Focus changes with Shortcuts, so another great reason to build in Shortcuts support into your apps.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’21
Reply to App Store Review Guideline 5.1.1(v): What is understood as OFFERING the account deletion WITHIN the app
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.
Replies
Boosts
Views
Activity
Jun ’21
Reply to Localizations fields not saving text
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.
Replies
Boosts
Views
Activity
Jun ’21
Reply to How know previously released app updates's build numbers?
In git?
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’21
Reply to De-listing an App from App Store and replacing it with same app with new name and features.
You have the possibility every time you update your app to reset the ratings and reviews or keep them all.
Replies
Boosts
Views
Activity
Jun ’21
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" }
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
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..
Replies
Boosts
Views
Activity
May ’21