我想同时播放一些带有 fmod 库的歌曲。我已经下载了 fmodex,在构建路径中导入和添加 jar。导入成功。导入 org.jouvieje.fmodex.Sound;在方法中我创建了对象 Sound
public void setSong(Song song, String songPath) {
Sound sound = new Sound();
this.song = song;
this.songPath = songPath;
}
我有一个警报/错误
E/AndroidRuntime(902): java.lang.NoClassDefFoundError: org.jouvieje.fmodex.Sound
请帮帮我。