Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Firebase Remote Config: Application name is not set. Call Builder#setApplicationName

Whenever I call FirebaseRemoteConfig.getInstance(), I get this warning:

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

I've updated the json config file from Firebase, but it remains the same. It does not affect any functionality, but I can't help but think something is missing. Any configurations I might be missing somewhere?

like image 253
rednuht Avatar asked Feb 19 '19 12:02

rednuht


1 Answers

This warning has been solved in firebase-config 19.0.2.

So if you upgrade the library to this version:

implementation 'com.google.firebase:firebase-config:19.0.2'

the warning disappears.

Anyway even if this warning polluted our log messages, applications using the previous versions of firebase config did behave as expected.

like image 176
shadowsheep Avatar answered Nov 19 '22 13:11

shadowsheep