0

我已经使用了 Applink,如下所示。在最新版本中,getTargetUrlFromInboundIntent 找不到符号错误。

除了不推荐使用的螺栓依赖项之外的任何替代方案。

error: cannot find symbol
        Uri applinkTargetUrl = AppLinks.getTargetUrlFromInboundIntent(this, getIntent());
                                       ^
  symbol:   method getTargetUrlFromInboundIntent(ItemViewActivity,Intent)
  location: class AppLinks

代码:

import com.facebook.bolts.AppLinks;

 Uri applinkTargetUrl = AppLinks.getTargetUrlFromInboundIntent(this, getIntent());
        if (applinkTargetUrl != null) {
            LogUtils.LOGI(TAG, "Facebooks appLink url = " + applinkTargetUrl.toString());
        }

App Links 是一个开放的全渠道解决方案,用于深度链接到您的移动应用程序中的内容。

AppLinks 节点已于 2020 年 2 月 3 日弃用。访问广​​告管理器以设置指向您的应用的链接。

https://developers.facebook.com/docs/applinks

4

0 回答 0