- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试记录从商店安装应用程序的结果。但是当从 Play Market 实际安装时我的自定义接收器不起作用,但是当我使用 adb 广播这样的东西时它起作用。
adb shell am broadcast -a com.android.vending.INSTALL_REFERRER -n "package_name"/.InstallReceiver --es referrer "TOPKEK"
Broadcasting: Intent { act=com.android.vending.INSTALL_REFERRER cmp="package_name"/.InstallReceiver (has extras) }
接收器按预期工作:
D/InstallReceiver: onReceive() called with: context = [android.app.ReceiverRestrictedContext@2af18590], intent = [Intent { act=com.android.vending.INSTALL_REFERRER flg=0x10 cmp="package_name"/.InstallReceiver (has extras) }extras=[Bundle{referrer='TOPKEK'}]]
但是当从 Google Play App 安装时,日志中唯一的内容是来自 CampaignTrackingReceiver 的消息:“CampaignTrackingReceiver 未注册、未导出或已禁用。无法安装 Activity 跟踪。有关说明,请参阅 http://goo.gl/8Rd3yj。”
接收者代码:
package "package_name";
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import com.adjust.sdk.AdjustReferrerReceiver;
import "package_name".util.LogHelper;
public final class InstallReceiver extends BroadcastReceiver {
private static final String TAG = "InstallReceiver";
@Override
public void onReceive(final Context context, final Intent intent) {
Log.d(TAG, "onReceive() called with: " + "context = [" + context + "], intent = [" + LogHelper.format(intent) + "]");
new AdjustReferrerReceiver().onReceive(context, intent);
}
}
list :
<?xml version="1.0" encoding="utf-8"?>
<manifest
package="package_name"
xmlns:android="http://schemas.android.com/apk/res/android">
<!-- normal permissions -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/>
<permission
android:name="'package_name'.permission.C2D_MESSAGE"
android:protectionLevel="signature"/>
<uses-permission android:name="'package_name'.permission.C2D_MESSAGE"/>
<application
android:name=".CustomApplication"
android:allowBackup="true"
android:fullBackupContent="false"
android:icon="@drawable/menu_icon_earny"
android:label="@string/app_name"
android:theme="@style/AppTheme">
//activities here
//gcm stuff
<!-- Google Analytics -->
<receiver android:name="com.google.android.gms.analytics.AnalyticsReceiver"
android:enabled="true">
<intent-filter>
<action android:name="com.google.android.gms.analytics.ANALYTICS_DISPATCH"/>
</intent-filter>
</receiver>
<service
android:name="com.google.android.gms.analytics.AnalyticsService"
android:enabled="true"
android:exported="false"/>
<!--My install receiver that didn't work as intended-->
<receiver
android:name=".InstallReceiver"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER"/>
</intent-filter>
</receiver>
</application>
</manifest>
UPD:我需要我的接收器工作,我需要那个日志而不是谷歌接收器。
最佳答案
您的接收器正在工作 - 我刚刚在生产中检查过它。为了测试您的接收器,您需要使用带有各种 UTM 参数的 URL defined in Google's docs - 您不能直接从 Google Play 安装它。这是我的 logcat 的证明:
0-16 09:08:45.408 13634 13634 D InstallReceiver: onReceive() called with: context = [android.app.ReceiverRestrictedContext@1cf1a5b], intent = [Intent { act=com.android.vending.INSTALL_REFERRER flg=0x10 pkg=com.cashcowlabs.earny cmp=com.cashcowlabs.earny/.InstallReceiver (has extras) }extras=[Bundle{referrer='utm_source=google&utm_medium=cpc&utm_term=podcast%2Bapps&utm_content=displayAd1&utm_campaign=podcast%2Bgeneralkeywords'}]]
您所指的错误(“CampaignTrackingReceiver 未注册..”)具有误导性,并不意味着您的 接收器出现故障。
看起来您正在使用 Google Analytics SDK,它可能在初始化时检查您应用的 list ,寻找 CampaignTrackingReceiver
,当找不到时,它会向您发出警告。这只是一个警告,是 Google Analytics SDK 开发人员试图帮助您解决问题的案例,但最终却让您更加困惑:)。
如果您想让 GA 广播接收器正常工作,您可以更改代码以将引荐来源 Intent 委托(delegate)给它,就像您为 Adjust 所做的那样:
@Override
public void onReceive(final Context context, final Intent intent) {
Log.d(TAG, "onReceive() called with: " + "context = [" + context + "], intent = [" + LogHelper.format(intent) + "]");
new AdjustReferrerReceiver().onReceive(context, intent);
new CampaignTrackingReceiver().onReceive(context, intent);
}
看起来,根据 Google 的文档,您还应该将他们的服务添加到您的 list 中。我的猜测是 CampaignTrackingReceiver
将其工作委托(delegate)给服务,但您可以查看反编译的 jar 以自行查找。将其添加到您的 list 中,就在您定义其他 GA 服务的位置:
<service android:name="com.google.android.gms.analytics.CampaignTrackingService" />
关于未找到接收器的警告可能仍然存在,但只要您在 Adjust 和 Google Analytics 中看到归因安装(通过使用
关于android - INSTALL_REFERRER BroadcastReceiver 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33170751/
我没有收到从 Play 商店安装的应用程序收到的安装引荐来源网址。下面是我的 Androidmanifest.xml 显示了位于 内的接收器也标记。
我想在我自己的接收器上捕获 INSTALL_REFERRER Intent 。我实现了接收器 public class InstallReferrerReceiver extends Broadcas
我收到了来自谷歌的电子邮件: We recently announced that we’ll be deprecating the install_referrer intent broadcast
我收到了来自 Google 的电子邮件: We recently announced that we’ll be deprecating the install_referrer intent bro
我正在尝试记录从商店安装应用程序的结果。但是当从 Play Market 实际安装时我的自定义接收器不起作用,但是当我使用 adb 广播这样的东西时它起作用。 adb shell am bro
问题是我无法在接收器中获取引荐来源网址。在 list 文件中,我有类似的东西: adb广播命令: adb shell
我正在尝试在 Google Analytics 上跟踪我的 Activity ,我已经按照教程进行操作,但它不起作用:( 这是我的 list :
我找不到任何文档提及 Amazon 应用商店是否像 Google Play 那样在安装后发送引荐 Intent。尽管 Amazon 的文档确实说我们可以在“ref”下的 URL 中设置引荐来源信息(与
应用程序究竟何时会收到来自 Android 电子市场的 INSTALL_REFERRER 广播?我可以安全地假设它是在调用 Application.onCreate() 之前收到的吗?我想确保我的应用
我尝试在 Android 2.2 上使用 INSTALL_REFERRER,并且我的广播接收器被调用,因此我知道我的 AndroidManifest.xml 是正确的。然而,传递给我的接收者的信息并不
我的 Android list 文件 我没有任何其他接收器。 测试: ~/deve
我正在使用自定义分析(而非谷歌分析)设置 Activity 跟踪并为此设置接收器。我的接收器似乎可以正常工作,但是当我安装时,我收到了 android lint 警告: ExportedReceive
我知道 INSTALL_REFERRER Intent 会在用户第一次打开已从 Play 商店安装的应用程序时触发。以下是我想澄清的几件事:在启动任何 Activity 之前是否触发了此 Intent
还是仅用于安装? Play 是否对它们一视同仁? 最佳答案 根据 Localytics,the intent is fired once在应用程序首次启动之前: Android will fire a
我试用了 INSTALL_REFERRER,使用 adb 一切正常,但当我的应用程序在 Google Play 商店中时却不行。 我的场景是: 1) 一个包含我的 BroadcastReceiver
我使用 referrerSender 在 Galaxy S8+、Oreo 8.0.0 上测试我的应用程序.有点不对劲,它喜欢: enter image des
我编写了一个安装接收器来确定应用程序何时通过市场安装。但是,我还想将 INSTALL_REFERRER 广播传递到其他接收器,例如 Google Analytics AnalyticsReceiver
我最初问this question ,关于在安装时通过市场链接将参数传递到我的应用程序中。 似乎每个人都在说要使用com.android.vending.INSTALL_REFERRER 的inten
我正在开发一个 Android 应用程序,我正在使用 INSTALL_REFERRER 来了解我的应用程序的安装来源。为此,我使用第一个 Google Analytics Install_Referr
我的应用程序中的 INSTALL_REFERRER 广播有问题。 我正在尝试创建一些关于 Activity 等的信息,但在大多数设备上我的 url"https://play.google.com/st
我是一名优秀的程序员,十分优秀!