我正在尝试记录从商店安装应用程序的内容。但是当我从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未注册,未导出或已禁用。无法安装广告系列跟踪。有关说明,请参阅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);
}
}
清单:
<?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:我需要我的接收器工作,我需要该日志而不是Google接收器。
答案 0 :(得分:4)
您的接收器正在工作 - 我刚刚在生产中检查过它。为了测试您的接收器,您需要使用包含各种UTM参数的网址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'}]]
您所引用的错误(&#34; CampaignTrackingReceiver未注册...&#34;)具有误导性,并不代表您的接收器失败。
您似乎正在使用Google AnalyticsSDK,它可能会在初始化时检查您应用的清单,查找CampaignTrackingReceiver
,如果找不到,则会为您提供警告。这只是一个警告,Google Analytics SDK开发人员试图帮助您解决问题,但最终会让您感到困惑:)。
如果您希望GA广播接收器正常工作,您可以更改代码以将推荐人意图委托给它,就像您正在为调整做的那样:
@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的文档,您应该将其服务添加到您的清单中。我的猜测是CampaignTrackingReceiver
将其工作委托给服务,但你可以查看反编译的jar来自行查找。将其添加到您的清单中,就在您定义其他GA服务的位置:
<service android:name="com.google.android.gms.analytics.CampaignTrackingService" />
关于未找到接收者的警告可能仍然存在,但只要您看到属性安装在adjust和Google Analytics中(通过使用
下载您的应用来测试它)