gpt4 book ai didi

ios - 带有观众的 Firebase 远程配置不起作用

转载 作者:可可西里 更新时间:2023-11-01 06:02:13 24 4
gpt4 key购买 nike

以下是我创建基于远程配置条件的自定义受众的步骤 -

  1. 首先我创建了一个名为 OEM 的用户属性

User property

  1. 我用 utm_source 创建了一个动态链接作为 google-micromax

    https://d83j2.app.goo.gl/?link=http://myapp.in&apn=com.myapp.app&utm_source=google-micromax&utm_medium=micromax_device&utm_campaign=promo_google_micromax

  2. 我创建了一个 OEM-Micromax 受众,条件是用户属性 OEM 包含 google-micromax

Audience

  1. 然后我根据 Micromax 受众创建了一个远程配置条件

remote config

  1. 然后我处理动态链接并将用户属性设置为从链接的 utm_source

    返回的值
    AppInvite.AppInviteApi.getInvitation(mGoogleApiClient, this, autoLaunchDeepLink)
    .setResultCallback(
    new ResultCallback<AppInviteInvitationResult>() {
    @Override
    public void onResult(AppInviteInvitationResult result) {
    if (result.getStatus().isSuccess()) {
    //First time user
    if (StorageHelper.getBooleanObject(StorageHelper.FIRST_TIME_USER, true)) {

    Intent intent = result.getInvitationIntent();
    String deepLink = AppInviteReferral.getDeepLink(intent);
    Uri uri = Uri.parse(deepLink);
    String utm_source = uri.getQueryParameter("utm_source");
    FirebaseEvents.setUserProperty(utm_source);

    StorageHelper.setBooleanObject(StorageHelper.FIRST_TIME_USER, false);
    }
    FirebaseEvents.logEventInvite(true);
    }
    }
    });
  2. 现在,当我从远程配置中获取 oem_admob_banner_unit_id 参数时,它仍然会返回 Default 值,而不是 Micromax 受众的值。

我做错了什么?

最佳答案

不确定这是否与您的问题有关,但我也无法让受众驱动的远程配置正常工作。 (我的恰好是基于应用程序事件/参数的受众,所以情况有点不同,但可能是类似的问题)。在我通过反复触发我的事件迫使观众中有足够多的用户后,它终于开始工作了。不确定有多少,大概 10 个左右。

关于ios - 带有观众的 Firebase 远程配置不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41731709/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com