Mohammed Munaf
Mohammed Munaf
Screen sharing isn't possible on Android?
We are also seeing this issue. Anyone found solution? @purut18
@cuiken @purut18 I have found a temporary solution. This issue gets resolved if we clear the cache of the app. So I am programmatically clearing the cache after the app...
Native code snippet for you to bridge. ``` @ReactMethod public void clearAppCache() { try { File dir = this.getReactApplicationContext().getCacheDir(); deleteDir(dir); } catch (Exception e) { e.printStackTrace();} } ```
@nikunj1314 I have mentioned the solution above. https://github.com/facebook/react-native/issues/33798#issuecomment-1188653748
The solution of adding `-no-verify-emitted-module-interface` worked for running on simulator. Fails to run on a real device.
@dynamisch-manish In apps like Zoom when screen sharing is ON, the video view gets minimized (picture in picture) and then you can browse the rest of the app. How can...
Facing same issue. Any solutions?