Does setBadgeCountAsync(2) work on Expo Go

Hi All,

I am just testing notification app badges, but the command setBadgeCountAsync(2) does not seem to produce an app badge on expo go. Is this because I am doing something wrong, or because Expo Go can’t be used to test this?

Expo Go Latest (47)
Android

More Info: I have local notifaction messages working that update the badge, but I cannot update the badge number directly as above.

Nor can I get the badge number, despite expo go displaying a number:

export async function getBadgeNum() {
    await Notifications.getBadgeCountAsync()
        .then(val => { console.log("Count " + val); });
}

Any thoughts?