在哪里为 OneSignal 推送通知在 Ionic 4 上放置自定义声音文件?

Where to put custom sound file on Ionic 4 for OneSignal Push Notification?

我看到了其他一些问题 platforms/ios/res/raw/

但是在我的 Ionic 4 应用程序中我没有文件夹 res/raw/

platforms/ios/res/raw/ 不在你的离子应用程序中,它在构建后的 ios 目录中,所以在你的 config.xml :

<platform name="ios"> 
    <resource-file src="resources/music/mp3 file name.mp3" target="res/raw/mp3 file name.mp3" /> 
</platform>

这里注意,在资源文件夹中你创建了一个名为 music 的文件夹,并在其中添加了 mp3 通知声音,它将包含在我提到的资源文件中。

对于 android 也是如此,您将在 android 内添加资源文件,但您将指定在 android 内放置通知的位置。