Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
shadowsheep1 opened this issue Feb 25, 2019 · 18 comments
Closed

Comments

@shadowsheep1
Copy link

shadowsheep1 commented Feb 25, 2019

What's this warning for?

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

I get it while calling

FirebaseRemoteConfig remoteConfig = FirebaseRemoteConfig.getInstance();

These my Firebase lib versions

implementation 'com.google.firebase:firebase-core:16.0.7'
implementation 'com.google.firebase:firebase-messaging:17.3.4'
implementation 'com.google.firebase:firebase-config:16.3.0'

There is also a SO question here.

@dirkam
Copy link

dirkam commented Mar 13, 2019

Same happens when using the new 16.4.0 version.

@samtstern
Copy link
Contributor

This warning comes from AbstractGoogleClient in the Google APIs Java library but I don't see why Remote Config would be using that...

@dirkam
Copy link

dirkam commented Mar 13, 2019

@samtstern
16.3.0 switched to REST API, can it be the reason?

The Firebase Remote Config SDK requires the Firebase Remote Config REST API. For Firebase projects created before March 7, 2018, you must manually enable the REST API. For more information, see our Remote Config REST API user guide.

@rinlv
Copy link

rinlv commented May 27, 2019

Does anyone have a solution? @shadowsheep1 @dirkam @samtstern

@shadowsheep1
Copy link
Author

@rinlv Nope, no solution. But apart from the warning all works fine on my side.

@sixpi
Copy link

sixpi commented May 31, 2019

I'm still seeing this in version 17.0.0, its cluttering up our log messages so a solution would be great. I can't find any function named setApplicationName in the firebase SDK for Android.

@sixpi
Copy link

sixpi commented Jun 27, 2019

Any updates?

@matzeema
Copy link

matzeema commented Jul 21, 2019

I'm also passing the exact same issue with @flutter. Have anyone worked out a solution?

@leorachit
Copy link

Any solution for this?

@Josearias2703
Copy link

Same issue :c

@bubbleguuum
Copy link

Same here although it does not seem to have any side effect.

@gongelosP
Copy link

Any news on this issue ?

@Fernandomr88
Copy link

up

@sceee
Copy link

sceee commented Sep 16, 2019

Also started for me popping up once FirebaseRemoteConfig was added.

@yjaquinas
Copy link

no solution yet :(

@bhanuka96
Copy link

this is working for me.

this is Dart language

adding await remoteConfig.fetch(expiration: const Duration(seconds: 0)); and await remoteConfig.activateFetched();

  void _adminValidate() async {
    try{
      final RemoteConfig remoteConfig = await RemoteConfig.instance;
      await remoteConfig.fetch(expiration: const Duration(seconds: 0));
      await remoteConfig.activateFetched();
      print(remoteConfig.getString('admin'));
    }catch (e){
      print(e);
    }
  }

@bubbleguuum
Copy link

This benign warning has disappeared since upgrading to firebase-config 19.0.2

@shadowsheep1
Copy link
Author

@bubbleguuum You're right! It seems so.

@firebase firebase locked and limited conversation to collaborators Nov 23, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests