>首先,我创建了一个名为OEM的用户属性
>我创建了一个动态链接,其中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
>我创建了一个OEM-Micromax受众,其条件是用户属性OEM包含Google-micromax
>然后我根据Micromax受众创建了一个远程配置条件
>然后我处理动态链接并将用户属性设置为从链接的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); } }});
>现在,当我从远程配置中获取oem_admob_banner_unit_ID参数时,它仍然返回默认值而不是Micromax受众的值.
我究竟做错了什么 ?
解决方法 不确定这是否与您的问题有关,但我也无法让受众驱动的远程配置工作. (我碰巧是基于app事件/参数的观众,所以这是一个不同的场景,但可能是类似的问题).在我通过反复触发我的事件迫使观众中有足够的用户之后,它终于开始工作了.不确定它有多少,可能在10左右. 总结以上是内存溢出为你收集整理的ios – 带有受众群体的Firebase远程配置不起作用全部内容,希望文章能够帮你解决ios – 带有受众群体的Firebase远程配置不起作用所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)