Reputation: 283
I searched for alternatives to restart my android application, but the only way I found to reboot is build with Flex.
Can i restart my android adobe air app with as3 flash? How i do it?
Upvotes: 2
Views: 1552
Reputation: 8159
You can't do it with anything built into Adobe AIR on mobile. The capabilities of AIR are extremely limited compared to native applications. You would have to build an AIR Native Extension (ANE) to handle it. Worth noting that I don't think this is possible at all on iOS (natively or otherwise), so if you are deploying to both you would need to account for this. This would likely also be the reason why you can't do it in AIR for Android, as AIR for mobile tends to appeal to the lowest common denominator. If one can't do it natively, it is likely Adobe didn't include it for the other.
See this question on how to do it natively: how to programmatically "restart" android app?
Upvotes: 2