无法在我的应用中使用标准链接

时间:2018-01-10 08:26:03

标签: android deep-linking

我刚刚更新了新的Uber应用程序(2018年1月8日),并且深层链接无效。

你能解释一下吗?

以下是我的代码:

   formattedUrl = String.format("uber://action=setPickup&client_id=%s&dropoff[latitude]=%f&dropoff[longitude]=%f", 
    mClientId, http://to.lat , to.lng);

    Uri uri = Uri.parse(formattedUrl);
    Intent i = new Intent(Intent.ACTION_VIEW);
    i.setData(uri);

    i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

    mContext.startActivity(i);

使用旧版Uber应用程序,我的代码运行良好。它显示了正确的拾音器和放大器。放弃位置,但在新的应用程序中,它不起作用。

1 个答案:

答案 0 :(得分:0)

可能是他们在申请中对此进行了更新。

您可以使用此link生成深层链接。