You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently started using your lib. Thank you, it's really cool and helps us to deliver new versions to our customers much faster 👍
I only have one question on how I can block user interface from tapping outside the installation modal and crashing the app 😅
This is how it can be reproduced:
Launch the example app.
Click "Update" in the modal.
Click "Install" in the next modal.
When the installation modal is shown, tap outside of it.
The installation process becomes interrupted, and the app crashes.
Prevent.tap.outside.and.app.crash.-.720p.mov
I tried to investigate the source code of your lib - ACTION_INSTALL_PACKAGE intent is called for updating the application. I googled if there are any special flags like "setCancellable(false)" that we could pass to this intent, but didn't find any.
Then I tried to make a fix at the "react-native" side and added a View with absolute position and pointerEvents="none" prop on the whole screen. But unfortunately this didn't work: if I tap on that View, the installation modal closes immediately.
How do you think, are there any ways to prevent installation modal from being closed and the app - crashed? Or is it a standard Android behavior which we cannot change?
Hi
I recently started using your lib. Thank you, it's really cool and helps us to deliver new versions to our customers much faster 👍
I only have one question on how I can block user interface from tapping outside the installation modal and crashing the app 😅
This is how it can be reproduced:
Prevent.tap.outside.and.app.crash.-.720p.mov
I tried to investigate the source code of your lib -
ACTION_INSTALL_PACKAGEintent is called for updating the application. I googled if there are any special flags like "setCancellable(false)" that we could pass to this intent, but didn't find any.Then I tried to make a fix at the "react-native" side and added a
Viewwith absolute position andpointerEvents="none"prop on the whole screen. But unfortunately this didn't work: if I tap on thatView, the installation modal closes immediately.How do you think, are there any ways to prevent installation modal from being closed and the app - crashed? Or is it a standard Android behavior which we cannot change?