FirebaseRemoteConfig错误“参数键不存在类型'String'的值”

问题描述 投票:19回答:5

我正在使用Firebase Core和其他一些功能,但不使用远程配置。每秒多次以下输出在Logcat上。

在哪里可以禁用远程配置功能,甚至可以设置那些不存在的值?

依赖关系:

// Project
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:4.2.0'
classpath 'com.google.firebase:firebase-plugins:1.2.0'

classpath 'io.fabric.tools:gradle:1.26.1'

// Module
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:support-vector-drawable:28.0.0'
implementation 'com.android.support:preference-v7:28.0.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'org.jsoup:jsoup:1.11.3'
implementation 'com.squareup.okhttp3:okhttp:3.11.0'
implementation 'com.android.support:cardview-v7:28.0.0'

implementation 'com.google.firebase:firebase-core:16.0.8'
implementation 'com.google.firebase:firebase-messaging:17.5.0'
implementation 'com.google.firebase:firebase-perf:16.2.4'
implementation 'com.google.android.gms:play-services-location:16.0.0'
implementation 'com.jsibbold:zoomage:1.2.0'
implementation 'com.android.support:exifinterface:28.0.0'
implementation 'com.squareup.picasso:picasso:2.71828'

implementation 'com.crashlytics.sdk.android:crashlytics:2.9.9'
W/FirebaseRemoteConfig: No value of type 'String' exists for parameter key 'sessions_max_length_minutes'.
W/FirebaseRemoteConfig: No value of type 'String' exists for parameter key 'sessions_max_length_minutes'.
W/FirebaseRemoteConfig: No value of type 'String' exists for parameter key 'sessions_feature_enabled'.
W/FirebaseRemoteConfig: No value of type 'String' exists for parameter key 'sessions_max_length_minutes'.
W/FirebaseRemoteConfig: No value of type 'String' exists for parameter key 'fpr_vc_trace_sampling_rate'.
W/FirebaseRemoteConfig: No value of type 'String' exists for parameter key 'sessions_feature_enabled'.
W/FirebaseRemoteConfig: No value of type 'String' exists for parameter key 'fpr_vc_trace_sampling_rate'.

它没有引起我认为的任何问题,只是烦恼它它控制台。

android firebase firebase-remote-config
5个回答
13
投票

Firebase回答我的错误报告:

您似乎收到了有关远程配置的警告。我们设法在我们的最终重现,我们的工程师已经确认这是按预期工作的。发生这种情况是因为您的应用程序中添加了性能监视SDK。这是因为性能监视在内部使用Firebase远程配置。但是,我们的工程师已经确认他们将来会尝试减少这些警告。目前,您可以忽略这些,因为它只是一个警告,不应该影响应用程序的性能。


10
投票

它来自'firebase-perf'的最新版本(例如,16.2.5),因为它具有内部'firebase-remote-config'依赖性。我有同样的问题,但我不知道,如何正确修复此日志垃圾邮件(除了“像这样的折叠行”选项在logcat中)。我希望Firebase团队能尽快修复它。


0
投票

Firebase性能监控在内部使用Firebase远程配置。你无法改变输出,但你可以使用我在上面评论中给出的链接来send feedback to the team


0
投票

如果使用Firebase控制台,则在“远程配置”选项卡中设置这两个值将停止警告。

我用过:

  • 参数键:sessions_max_length_minutes |价值:15
  • 参数键:sessions_feature_enabled |价值:是的

不确定是否有任何副作用,但(希望)它是一个内部测试的东西,并没有改变任何东西。


0
投票

这可能与以下内容有关:

W/zzd: Application name is not set. Call Builder#setApplicationName

禁用perf-pluginfirebase-perf删除恼人的日志条目:

// classpath "com.google.firebase:perf-plugin:1.2.1"
// apply plugin: "com.google.firebase.firebase-perf"
// implementation "com.google.firebase:firebase-perf:17.0.0"

firebase-config在它自己的工作正常。

© www.soinside.com 2019 - 2024. All rights reserved.