Anyone able to confirm how, within app Y on the device, to link directly to app X on the app store, for both:
a) IOS (i.e. to launch app X in the app store directly)
B) Android (i.e. to launch to app X on Google Play Market play)
I have been using the following, however it appears to go via the browser which then launches the app store. I just saw an app on the iPad for which they launched app store directly and I didn’t see Safari appearing in between.
What I’m currently doing:
Constants["FULLVERSION\_URL\_APPLE"] = "http://itunes.com/apps/company/appX" Constants["FULLVERSION\_URL\_GOOGLEPLAY"] = "https://play.google.com/store/apps/details?id=au.com.company.appX" if device.isApple then system.openURL( Constants["FULLVERSION\_URL\_APPLE"] ) elseif device.isAndroid then system.openURL( Constants["FULLVERSION\_URL\_GOOGLEPLAY"] ) else end