2

2つの異なるグループのユーザーに対して2つの異なるイベントを記録します。それらは、リモート設定(ランダムなpercintileの50%)で指定されます。イベントは1人のユーザーには表示されませんが、ファンネルで重複してはいけません。何が間違って行うことができますか?ファンネルのデータが正しくありません

OnCompleteListener<Void> onCompleteListener = new OnCompleteListener<Void>() { 
      @Override 
      public void onComplete(@NonNull Task<Void> task) { 
       if (task.isSuccessful()) { 
        mFirebaseRemoteConfig.activateFetched(); 



        Boolean shuldShowPremiumDialoginNotification = mFirebaseRemoteConfig.getBoolean("premiumDialogInNotifications"); 
        KLog.e(shuldShowPremiumDialoginNotification); 
        SharedPrefsManager.setShowPremiumDialogInNotifiactions(SettingsActivity.this, shuldShowPremiumDialoginNotification); 
        if (shuldShowPremiumDialoginNotification) 
         mFirebaseAnalytics.logEvent("premium_dialog_show_T", null); 
        else 
         mFirebaseAnalytics.logEvent("premium_dialog_show_F", null); 


       } else KLog.e("remote config error " + task.getException().getMessage()); 
      } 
     }; 

     if (mFirebaseRemoteConfig.getInfo().getConfigSettings().isDeveloperModeEnabled()) { 
      // This forces Remote Config to fetch from server every time. 
      mFirebaseRemoteConfig.fetch(0).addOnCompleteListener(this, onCompleteListener); 
     } else { 
      mFirebaseRemoteConfig.fetch().addOnCompleteListener(this, onCompleteListener); 
     } 
} 

enter image description here

答えて

2

何も間違っていない - 私は理解することが重要なことは、Firebase Analyticsのファンネルが閉じたファンネルファンネルを「オープン」、とされていないということだと思います。イベントAとイベントBの種類のグラフに遭遇した人の数は、「イベントAとイベントBを並べて表示してみましょう」のようなものです。

ここにあなたが見ているものがあります。約745人のユーザーがdialog_Tイベントを見て、776人のユーザーがdialog_Fイベントと言っていました。これは、Remote Configセットアップで見られるものとほぼ一致しています。

関連する問題