No notification sound on android

Hi, I implemented notifications on the react native app. The notifications reception works fine but I don’t have any sound when using android I’m running Expo 35.0.0

For android create the channel in Frontend and send notification from Backend side via channel id as show in below.

Frontend:

if (Platform.OS === ‘android’) {
Notifications.createChannelAndroidAsync(‘default’, {
name: ‘default’,
sound: true,
priority: ‘max’,
vibrate: [0, 250, 250, 250],
});
}

Backend:

const message = {
to: this.state.expoPushToken,
sound: ‘default’,
title: ‘Original Title’,
body: ‘And here is the body!’,
data: { data: ‘goes here’ },
_displayInForeground: true,
};