I want to play a sound in format wav/mp3. I am using AVAudioPlayer. The issue is its audible in earpiece but when i remove the earpiece no sound comes. I have searched and tried some suggestion given here but the result was same. Please help me with this issue. Thanks
- (void)viewDidLoad
{
[super viewDidLoad];
NSString *path = [NSString stringWithFormat:@"%@/Right Side Stress Increasing.mp3", [[NSBundle mainBundle] resourcePath]];
NSURL *soundUrl = [NSURL fileURLWithPath:path];
// Create audio player object and initialize with URL to sound
_audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:soundUrl error:nil];
}
- (IBAction)playButtonTapped:(id)sender
{
//play sound
[_audioPlayer play];
}