I have created a main app and added finder sync extension as the target for main app. When user click on a folder, requestforBadgeIdentifier() gets invoked, I'm able to show initial badge icon during that time. But I need to update the badge later based on some condition (synching process).
Folder contents are synched using another process. Once synching is completed, I want to update the badges from that process.
Can I invoke the below API from another process (not from finder sync extension)?
FIFinderSyncController.default().setBadgeIdentifier("cloud", for: url)
Folder contents are synched using another process. Once synching is completed, I want to update the badges from that process.
Can I invoke the below API from another process (not from finder sync extension)?
FIFinderSyncController.default().setBadgeIdentifier("cloud", for: url)