I'd like to write a simple application that works for both iOS and Android that does the following:
- query a server for a list of apps (APK and IPA files)
- show the results to the user
- let the user select one
- download the file to the device
- launch native installer for the file
I think steps 1 to 4 should be trivial, but is it possible to do step 5 from within PhoneGap? Might window.open work or would I need to write a Plugin to execute native functionality for the install?
Thanks! Paul