"Review this App" link in Phonegap/Cordova
android, cordova, ios
Solution
One interim approach could be to put in http based URL's (e.g. http://yourdomain.com/ios, http://yourdomain.com/android) to pages that you own, and replace with a redirect to URL's of the respective apps once they have been approved.
Problem
I am putting the finishing touches on an iOS / Android application built in Phonegap/Cordova. The information page will offer a link to review the app, and I am trying to implement it. This StackOverflow Post has great documentation on how to format the links: ``` ...if (device_ios) { window.open('itms-apps://itunes.apple.com/us/app/domainsicle-domain-name-search/id511364723?ls=1&mt=8'); // or itms:// } else if (device_android) { window.open('market://details?id=<package_name>'); } else if (device_bb) { window.open('http://appworld.blackberry.com/webstore/content/<applicationid>'); }.... ``` Now I'm wondering if there's any way to create these links before my app is actually approved by apple. It seems to me like I first need to submit the app, get the app id/link, and then input the newly generated review link? For the purposes of testing, that's not exactly ideal. What's the best way to accomplish this?