Skip to main content
Inspiring
August 22, 2014
Answered

Adobe AIR iOS app doesn't run in background

  • August 22, 2014
  • 1 reply
  • 772 views

I have an iOS app made with Adobe AIR. It doesn't run in background even though I have done the following things I can think of,

1.  NativeApplication.nativeApplication.executeInBackground = true;

This is the first thing I did. I had another app which runs in background without problem, and this is the only trick I know I used there.

2. Experimented with <renderMode>direct</renderMode>, <renderMode>gpu</renderMode>, and <renderMode>auto</renderMode>. None worked.

3. Added,

<key>UIBackgroundModes</key>

  <array>

  <string>audio</string>

  </array>

Didn't work either.

Whenever I switch the app to background, no matter how short the time is, it always starts from the beginning when switched back. The only exception is when I take a phone call, in which case it seems to continue from where it left off. Can someone please tell me what is going on? Is there still hope left for me? Thanks a bunch.

BTW, the same app packaged for Android has no problem running in the background, and I didn't do anything to enable it.

This topic has been closed for replies.
Correct answer omgallnamestaken

I forgot to update there after I figured out the problem.

There is a key UIApplicationExitsOnSuspend which was for some reason set to true in my application.xml file.

1 reply

Known Participant
October 15, 2014

omgallnamestaken,

did you ever get anywhere on this?  Im trying to do the same thing on ios with air app running in the background.  thanks.

omgallnamestakenAuthorCorrect answer
Inspiring
October 15, 2014

I forgot to update there after I figured out the problem.

There is a key UIApplicationExitsOnSuspend which was for some reason set to true in my application.xml file.