我想同时用fmod库播放一些歌曲。我已经下载了fmodex,导入并在构建路径中添加了jar。进口是成功的。 import org.jouvieje.fmodex.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
请帮帮我。