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
Issues:
• The update popup for the IMMEDIATE update displays a close button (X) in the top right corner.
• Users can dismiss the popup by pressing the back button, which should not be allowed in IMMEDIATE update mode.
Questions:
1. How can I hide the close button for an IMMEDIATE update?
2. How can I prevent the popup from closing when the back button is pressed for an IMMEDIATE update?
Thank you
The text was updated successfully, but these errors were encountered:
//code snippet
if (result.shouldUpdate) {
const forceUpdateVersion = await fetchForceUpdate();
const isForceUpdate = forceUpdateVersion === result.storeVersion;
let updateOptions = {};
if (Platform.OS === 'android') {
updateOptions = {
updateType: isForceUpdate
? IAUUpdateKind.IMMEDIATE
: IAUUpdateKind.FLEXIBLE,
};
}
console.log("updateOptions :", updateOptions)
await inAppUpdates.startUpdate(updateOptions);
}
//console log
console output ---> updateOptions : { updateType: 1 }
Issues:
• The update popup for the IMMEDIATE update displays a close button (X) in the top right corner.
• Users can dismiss the popup by pressing the back button, which should not be allowed in IMMEDIATE update mode.
Questions:
1. How can I hide the close button for an IMMEDIATE update?
2. How can I prevent the popup from closing when the back button is pressed for an IMMEDIATE update?
Thank you
The text was updated successfully, but these errors were encountered: