I am trying to add uber deep linking into my app on Android.
I am creating the intent as follows:
Intent intent = new Intent(Intent.ACTION_VIEW, deepLink.getDeeplinkUri());
mContext.startActivity(intent);
The computed Uri I am sending through is this:
uber://?action=setPickup&product_id=91901472-f30d-4614-8ba7-9fcc937cebf5&pickup[latitude]=-33.9226277&pickup[longitude]=18.4232182&dropoff[latitude]=-33.972282&dropoff[longitude]=18.601956
It then launches the Uber app, selects the correct product, but it is not picking up the dropoff location at all.
Am I missing something?
Thanks for the help
0 comments:
Post a Comment