gpt4 book ai didi

Android - 是否有可能以编程方式安装引荐来源网址

转载 作者:IT老高 更新时间:2023-10-28 22:01:38 25 4
gpt4 key购买 nike

我注意到浏览器中的一些 Google Play 应用链接具有 referrer= 属性,这显然告诉引荐来源网址将您发送到 Google Play 中该应用的页面。

是否可以在我的应用程序代码中看到该引荐来源网址(如果有)?如果没有,在任何地方都可以看到它?

最佳答案

您可以使用 com.android.vending.INSTALL_REFERRER

The Google Play com.android.vending.INSTALL_REFERRER Intent is broadcast when an app is installed from the Google Play Store.

将此接收器添加到 AndroidManifest.xml

<receiver
android:name="com.example.android.InstallReferrerReceiver"
android:exported="true"
android:permission="android.permission.INSTALL_PACKAGES">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>

创建一个广播接收器:

public class InstallReferrerReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
String referrer = intent.getStringExtra("referrer");

//Use the referrer
}
}

您可以按照 answer 的步骤测试推荐跟踪.

关于Android - 是否有可能以编程方式安装引荐来源网址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30103338/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com