LazyBonesLZ

Results 2 comments of LazyBonesLZ

我也遇到了相同的问题。可能还是由于没有完成sdk的初始化。所以在自定义Application类的attachBaseContext方法内强制调用初始化方法 `TraceApplicationLike.attachBaseContex()` ``` @Override protected void attachBaseContext(Context base) { super.attachBaseContext(base); TraceApplicationLike.attachBaseContext(base); } ``` 因为TraceApplicationLike源码注释说:会在 `Application#attachBaseContext(Context)`里注入。 ``` /** * the method would be injected in {@link Application#attachBaseContext(Context)} of your app application....

fetched first time, if call activate(), the value is null . What's wrong? Here is my code: ``` firebaseRemoteConfig.fetch(0L) .addOnCompleteListener(new OnCompleteListener() { @Override public void onComplete(@NonNull Task task) { if...