Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an app to play some music, using PhoneGap and html5 audio tag to play audio on iOS. previously it could play music in the background perfectly (with PhoneGap 1.0.0 for iOS), but after I upgraded PhoneGap to 1.5.0(Cordova), I can't get it play on the background anymore.

When I press HOME button, the audio pauses. When I switch back to app, it resumes.

I have already set the Required background modes in the Info.plist with value audio.

So is there something I missed? Thank you.

share|improve this question

3 Answers

In the MainController.h file change the following:

#import "MainViewController.h"
#import <AVFoundation/AVFoundation.h>

@implementation MainViewController

- (id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization

        NSError *setCategoryError = nil;
        [[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error: &setCategoryError];

    }
    return self;
}

I'm not sure if the following is necessary but I cleaned my project (CMD+ALT+K), recompiled the PhoneGap / Cordova Lib (change target and let it run to simulator) and (after changing the target again) compiled to the application once more and now it works!

Beware: it only works on Device, not on the simulator

share|improve this answer

Did you try to follow the steps described here :

http://www.joeldare.com/wiki/play_an_mp3_audio_stream_in_phonegap

share|improve this answer

Now I meet this problem,too.I try to use buzz.js to solve this problem.

When I use buzz.js , my app can play music in background.

But there is another strange problem.After using ajax function to get the mp3 url, and try to use this url for playing but it doesn't work.

I don't know what cause this problem.I had submitted an issue on github. :-(

Does anyone has a better solution?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.