Zoom android sdk clears local storage data

Hi @jainvishal258,

Thanks for the additional context around your implementation. Since the Meeting SDK is a native implementation, it does not change the behavior of the WebView used in your app.

When the Meeting SDK is used to start/join a meeting, it starts a new Activity in your app containing the default meeting UI. It sounds like navigating away from the Activity which contains your WebView to show the meeting UI is causing data to be lost once the MeetingActivity instance is cleared from the stack.

You can verify whether or not the above assertion is true in your app by creating a blank Activity and starting it instead of calling into the Meeting SDK. Navigating back to the Activity containing your WebView from here should give you an answer. :slightly_smiling_face:

Thanks!