Re: Two mobile audio issues

2015-09-25 Thread Main Google
That will keep the app alive (until the OS needs the memory for something else). The replacement keys I posted enable background audio and location services which need to be enabled in that way to prevent the app from being killed. g > On 26 Sep 2015, at 12:40 AM, Ralph DiMola wrote: > > Al

RE: Two mobile audio issues

2015-09-25 Thread Ralph DiMola
-livecode-boun...@lists.runrev.com] On Behalf Of Main Google Sent: Friday, September 25, 2015 2:31 AM To: How to use LiveCode Subject: Re: Two mobile audio issues Jacque Replace this: UIApplicationExitsOnSuspend ${APPLICATION_EXITS_ON_SUSPEND} With this

Re: Two mobile audio issues

2015-09-24 Thread J. Landman Gay
Thanks. I'll save it this time. :) On 9/25/2015 1:31 AM, Main Google wrote: Jacque Replace this: UIApplicationExitsOnSuspend ${APPLICATION_EXITS_ON_SUSPEND} With this: UIBackgroundModes audio in the Settings.plist files at:

Re: Two mobile audio issues

2015-09-24 Thread Main Google
Jacque Replace this: UIApplicationExitsOnSuspend ${APPLICATION_EXITS_ON_SUSPEND} With this: UIBackgroundModes audio in the Settings.plist files at: /Applications/LiveCode .app/Contents/Tools/Runtime/iOS/ As noted you h

Re: Two mobile audio issues

2015-09-24 Thread J. Landman Gay
On 9/24/2015 9:09 PM, Main Google wrote: Have you applied the background running plist hack for iOS? If you haven’t you won’t keep it playing when the device is put to sleep. Thanks, I haven't done that. I've read about it but didn't save the instructions, do you have a link? Also, is that al

Re: Two mobile audio issues

2015-09-24 Thread Main Google
I wrote a (personal) podcast app for iOS and faced some of the same issues you do. > The sound stops when the device sleeps. I see we can set the idle timer but > that prevents sleeping entirely (and I'm not sure how persistent it is.) How > would I keep the sound on during sleep? Have you ap