1
我想向本地推送通知添加聲音。 我正在使用RN 0.45.1和 react-native-push-notifications 3.0.0反應本機推送通知聲音
我設法使用默認聲音在iOS和Android中安排通知。 我沒有設法添加自定義聲音。
我有MP3類型的聲音文件。 我試過如下:
- 發生在我的項目文件夾中的文件: '/src/assests/sounds/sound.mps'(文件夾我的項目裏)
比:
import notificationSound from '../src/assests/sounds/sound.mps';
PushNotification.localNotificationSchedule({
message: 'Test message',
date: new Date(Date.now() + (60 * 1000)),
repeatType: 'time',
repeatTime: 60 * 1000,
sound: notificationSound,
});
- 另一個嘗試是: 把聲音文件機器人文件夾下:.. \機器人\應用\ SRC \主\ RES \原料\ sound.mp3
和通知是:
PushNotification.localNotificationSchedule({
message: 'Test message',
date: new Date(Date.now() + (60 * 1000)),
repeatType: 'time',
repeatTime: 60 * 1000,
sound: sound.mp3,
});
嗨,我讀了故宮的文檔。如果你看看我的第二個選項,我嘗試了什麼文檔說,但沒有運氣 –
我認爲你使用'聲音'作爲參數,但你需要使用'soundName' 所以 '''sound:sound.mp3 ,'''是不適當的 '''soundName:sound.mp3,'''是合適的 –
謝謝Nisarg, 我在你的第一個回覆中錯過了'soundName'屬性...我正在關注文件位置 –