我想在我的Android设备上测试延迟deeplink,然后在Google Play中发布this页面上没有如何测试的信息。互联网上也没有可用的信息,也许有人知道?
wbgh16ku1#
1.转到现有cabinet或创建新cabinet1.打开Tracking -> Create Tracker,选择您的应用程序,选择MediaSource作为Google搜索,添加SmartLink,其中AppStore是Google Play单击保存并复制生成的跟踪URL例如here,你可以找到一个截图!1.通过您的Android手机打开跟踪URL,它会将您重定向到Google Store。不要单击任何内容!1.通过adb命令adb install app.apk安装您的应用。请确保您的应用具有与Google Play中相同的应用ID***id https://play.google.com/store/apps/details?id=应用ID&...1.打开你的应用,你的应用将收到你在url中设置的内容。请记住,延迟深层链接只能在首次启动时请求!
adb install app.apk
https://play.google.com/store/apps/details?id=
&...
YandexMetrica.requestDeferredDeeplink(object : DeferredDeeplinkListener { override fun onDeeplinkLoaded(deeplink: String) = Log.d("Deeplink", "deeplink = $deeplink") override fun onError(error: DeferredDeeplinkListener.Error, referrer: String?) = Unit })
1条答案
按热度按时间wbgh16ku1#
1.转到现有cabinet或创建新cabinet
1.打开Tracking -> Create Tracker,选择您的应用程序,选择MediaSource作为Google搜索,添加SmartLink,其中AppStore是Google Play单击保存并复制生成的跟踪URL
例如here,你可以找到一个截图!
1.通过您的Android手机打开跟踪URL,它会将您重定向到Google Store。不要单击任何内容!
1.通过adb命令
adb install app.apk
安装您的应用。请确保您的应用具有与Google Play中相同的应用ID***idhttps://play.google.com/store/apps/details?id=
应用ID&...
1.打开你的应用,你的应用将收到你在url中设置的内容。请记住,延迟深层链接只能在首次启动时请求!