I’m building a Flutter app that needs to integrate Zoom functionality directly inside the app, not redirecting users to the Zoom client.
My key requirements are:
-
Meetings must not be recordable — no cloud recording, no local recording, and ideally preventing screen recording.
-
Zoom UI should be embedded in the app.
-
Guidance on whether Meeting SDK or Video SDK is more suitable in this Flutter scenario.
Specifically, I’d like to know:
-
Can the Meeting SDK fully disable recording features for participants in a Flutter app?
-
If I use the Video SDK, will it inherently prevent Zoom-style recording since it’s not a standard Zoom meeting?
-
Are there limitations on iOS/Android for preventing screen recording with either SDK in Flutter?
-
Overall, which SDK is recommended for a non-recordable, embedded Zoom-like experience in Flutter?
Any advice, examples, or best practices for Flutter integration would be greatly appreciated.
Thank you!