应用研发平台EMAS中uniapp里使用阿里云推送  soundpath的格式是什么样的?我已经把mp3放到res/raw里了,参考图片:
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。
参考代码:createChannel() {
                console.log("call createChannel");
                let absPath = plus.io.convertLocalFileSystemURL('_www');
                // Android获取的absPath以/结尾,iOS获取的absPath不是/结尾
                if (absPath[absPath.length - 1] == '/') {
                    absPath = absPath.substring(0, absPath.length - 1);
                }
                let url = absPath + /static/sound/alicloud_notification_sound.mp3
                console.log(url);
                const vibrationArr= [100, 200, 300, 400, 500, 400, 300, 200, 400];
                channel.createChannel({
                    id: 'aaa',
                    name: '测试通道A',
                    desc: '测试创建通知通道',
                    importance: 3,
                    light:true,
                    lightColor:0xFFFF0000,
                    soundPath:url,
                    soundContentType:4,
                    soundUsage:5,
                    vibration:true,
                    vibrationPattern:vibrationArr
                });
            },     此回答整理自钉群“应用研发平台EMAS开发者交流群”