I”m developing an app on macOS.
It’s a tauri app which links to a custom library (written in objective-C so I can access some system functionality).
The issue is, some of the functionality in the custom library, requires permissions in order to work.
How do I give my tauri program permissions?
Because this is a dev program and not an installed program, I can’t give the program permissions via system Privacy & Security
in the System Settings
.
I’ve also tried to give the library permissions via xcode
but because this is a library and not a app, I don’t have the Signing & Capabilities
tab, so I can’t give the library permissions.