我遇到了问题。我有从 Google Play 获取 utm_source 的 BroadcatReceiver。
显现:
<receiver
android:name=".utils.referring.InstallReferrerReceiver"
android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
我的应用在 Google Play 中的 Alpha 版。当我测试我的应用程序时,我正确地从手机(三星、小米、华为)获得了 utm_source,但是当我尝试使用平板电脑(三星、Nexus)进行测试时,我看到我的 utm_source 值等于 not_set。
问题是什么?