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
InstallationResult value in result of addIntentSelectionListener event has string type (ex.: "6" for cancelled).
But IAUInstallStatus.CANCELED has number type (6 for cancelled).
Temporary fix is:
inAppUpdates.addIntentSelectionListener((intentResult)=>{switch(Number(intentResult)){// fix for incorrect type of `intentResult`caseIAUInstallStatus.CANCELED:
// some your logicbreak;caseIAUInstallStatus.INSTALLED:
// some your logicbreak;}});
OS: Android 14
The text was updated successfully, but these errors were encountered:
InstallationResult
value in result ofaddIntentSelectionListener
event has string type (ex.:"6"
for cancelled).But
IAUInstallStatus.CANCELED
has number type (6
for cancelled).Temporary fix is:
OS: Android 14
The text was updated successfully, but these errors were encountered: