parameter MinimumOSVersion

Hello,

i just submitted my firs app to the app store and forgot to set the parameter MinimumOSVersion. 

I know that corona sdk only supports iOS versions >= 6.0 which is fine for me. Does that also mean that i must set the MinimumOSVersion in the build settings manually or is it automatically done by the corona build?

Is there a android equivalent for the iOS setting UIApplicationExitsOnSuspend

Thanks in advance

Thomas

Corona sets it for you if it’s omitted.

Thanks a lot for the confirmation.

Is there a android equivalent for the iOS setting UIApplicationExitsOnSuspend

No.  Android apps by default do not exit on suspend.  You would have to put a native.requestExit() call in side of a suspend handler if you want it to exit when getting backgrounded.

Rob

Thanks Rob.

Corona sets it for you if it’s omitted.

Thanks a lot for the confirmation.

Is there a android equivalent for the iOS setting UIApplicationExitsOnSuspend

No.  Android apps by default do not exit on suspend.  You would have to put a native.requestExit() call in side of a suspend handler if you want it to exit when getting backgrounded.

Rob

Thanks Rob.