Since there is no Beep in B4i and Mediaplayer should be used instead I tried this simple test code but got no sound on an iPhone 4. What am I missing? Log shows duration of 992 (milliseconds) so file loaded ok.
B4X:
Private Sub Application_Start (Nav As NavigationController)
NavControl = Nav
Page1.Initialize("Page1")
Page1.Title = "Page 1"
Page1.RootPanel.Color = Colors.White
NavControl.ShowPage(Page1)
mp1.Initialize(File.DirAssets,"beep-01a.mp3","MPlayer")
Log("Duration= "&mp1.Duration)
mp1.Volume=1
mp1.play
End Sub