Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/213.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 安装\u referer广播接收器不工作_Android_Broadcastreceiver_Google Analytics Sdk_Install Referrer - Fatal编程技术网

Android 安装\u referer广播接收器不工作

Android 安装\u referer广播接收器不工作,android,broadcastreceiver,google-analytics-sdk,install-referrer,Android,Broadcastreceiver,Google Analytics Sdk,Install Referrer,我正在尝试记录从应用商店安装应用程序的结果。但我的自定义接收器在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.

我正在尝试记录从应用商店安装应用程序的结果。但我的自定义接收器在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应用程序安装时,日志中唯一的内容就是来自ActivationTrackingReceiver的消息: 活动跟踪接收器未注册、未导出或已禁用。无法进行安装活动跟踪。有关说明,请参阅

接收方代码:

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>

//这里的活动
//gcm材料
UPD:我需要我的接收器工作,我需要的是那个日志,而不是谷歌接收器。

Edit 你的接收器在工作-我刚在生产中检查过。为了测试您的接收器,您需要使用带有各种UTM参数的URL—您不能直接从Google Play安装它。这是我的日志中的证据:

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,它可能会在初始化时检查应用程序的清单,查找
活动跟踪接收器
,如果找不到,它会向您发出警告。这只是一个警告,是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);
}
看起来,根据谷歌的文档,你也应该将他们的服务添加到你的清单中。我的猜测是
CampaignTrackingReceiver
将其工作委托给该服务,但是您可以查看反编译的jar来自己了解。将其添加到清单中,即定义其他GA服务的地方:

<service android:name="com.google.android.gms.analytics.CampaignTrackingService" />


关于找不到接收器的警告可能仍然存在,但只要您在Adjust和Google Analytics中看到(通过使用

下载你的应用程序来测试它。我真的不在乎google receiver,但我的接收器不工作-根本没有日志,这是主要问题。我会尝试将它添加到清单中。@KonstantinBerkow你的接收器工作正常-我只是在生产中检查了它。请看我的编辑。哇,看起来我今天工作过度了,即使没有所有日志,它也能工作。)软管utm的,谢谢。