I'm currently working on integrating the Uber Eats app with my own application. My app runs on Cordova and Angular.
Here is the code I am using:
var url = 'https://www.ubereats.com/';
if (isPhoneGap()) {
if (isAndroid()) {
url = 'com.ubercab.eats:';
} else if (isIOS()) {
url = 'uber-eats-food-delivery://www.ubereats.com/?';
}
}
window.open(url,'_system');
Unfortunately, this code is not successfully launching the Uber Eats app. Can anyone provide guidance on how to make my app properly launch the Uber Eats app?