Open naychrist opened 1 month ago
Thank you @naychrist,
the permission handler package I used doesn't support macOS. Removing that check doesn't throw anymore.
Also, I think you should enable Audio input
and Downloads folder
in XCode under Runner->Signin & Capabilities.
I do not have a mac or iPhone to try and I am not familiar with those. I pushed a fix for this, can you confirm it is working now?
thanks! that did the trick :)
True, you do need to grant access to the downloads folder for recording as well. You can do this via the UI as you suggested or you can just add the following to the example/macos/Runner/DebugProfile.entitlements
and example/macos/Runner/Release.entitlements
<key>com.apple.security.device.audio-input</key>
<true/>
<key>com.apple.security.files.downloads.read-write</key>
<true/>
Heads up I will post a new issue for iOS after I get a chance to look into some framework linking issues I am having here.
Description
Demo runs (thanks!) but with an unhandled exception on launch
Steps To Reproduce
update macos debug.entitlements by adding:
run to debug
Application throws the following error on launch
Can still init and then start capture
Expected Behavior
Should not throw error on launch
Context
MacOS 14.5, Flutter 3.24.3