In a desktop AIR application you can use this to make your app run at startup:
if (NativeApplication.supportsStartAtLogin)
{
NativeApplication.nativeApplication.startAtLogin = true;
}
But this doesn't work in mobile apps (iOS, Android, BB).
Is there any alternative?
Thank you!