Re: Catalina Entitlements or Permissions (was Possible Catalina problem)

2020-06-18 Thread Andrew at MidWest Coast Media via use-livecode
> http://newosxbook.com/ent.jl > > Now, if only I could figure out from the database which ones I need to add. Wow, that is an AWESOME tool! I hate that Apple won't pull a single engineer off a project to write some documentation. A similar solution I use is to make-up for Apple’s confusing

Re: Catalina Entitlements or Permissions (was Possible Catalina problem)

2020-06-17 Thread Paul Dupuis via use-livecode
Arghh! So I am Googling and Googling and hunting around the Apple Developer site to try to find a comprehensive list of macOS entitlements so I can code sign my app with the the entitlements my app needs to not generate errors under Catalina. I want to execute: codesign --verbose --deep

Re: Catalina Entitlements or Permissions (was Possible Catalina problem)

2020-06-16 Thread Paul Dupuis via use-livecode
Hi Panos, Thank you very much. The discussion in the bug entry answered  lot of my questions. I have one last thing I hope you or someone can point me two, which is a list of Apple macOS "entitlements" From the bug entry I see: com.apple.security.device.audio-input

Re: Catalina Entitlements or Permissions (was Possible Catalina problem)

2020-06-15 Thread Mark Talluto via use-livecode
We use App Wrapper 3 to sign and notarize our apps. You can control all of these details from inside the app. It makes it pretty easy. I think you can try the app for free and see if this works for you. https://www.ohanaware.com/appwrapper/ Best regards,

Re: Catalina Entitlements or Permissions (was Possible Catalina problem)

2020-06-15 Thread panagiotis merakos via use-livecode
Hello Paul, I guess you can sign the standalone mac app with entitlements, i.e. use a file that will contain all the necessary entitlements, and include it in the params passed to the codesign command. See this report for more details: https://quality.livecode.com/show_bug.cgi?id=22660 Kind