question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Cannot Resolve Symbol new FirebaseImageLoader.Factory()

See original GitHub issue

Dear all,

I was following the guide on Git Wiki for Storage

Dependencies compile ‘com.firebaseui:firebase-ui-storage:3.1.0’ compile ‘com.github.bumptech.glide:glide:4.1.1’ annotationProcessor ‘com.github.bumptech.glide:compiler:4.1.1’

In MyAppGlideModule, on the following line…

registry.append(StorageReference.class, InputStream.class, new FirebaseImageLoader.Factory());

I’m getting Cannot Resolve Symbol on Factory(). Screenshot below…

image

I checked the source code and the Inner Static class Factory is present in the code.

What could be wrong? I’m stuck and cannot complete the Image Download part, so any help would be appreciated!

Thanks in advance…

SG

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Reactions:5
  • Comments:6 (2 by maintainers)

github_iconTop GitHub Comments

24reactions
pandalion98commented, Apr 9, 2018

Just a small update: To fix the issue, include firebase-ui-storage in your Gradle dependencies.

implementation 'com.firebaseui:firebase-ui-storage:3.3.0'

The import responsible for FirebaseImageLoader is

import com.firebase.ui.storage.images.FirebaseImageLoader;
1reaction
sgatadecommented, Dec 6, 2017

Apologies for not responding… @samtstern : YES! I am loading images without the code (commented out) and its working perfectly…

Regards,

SG

Read more comments on GitHub >

github_iconTop Results From Across the Web

Cannot resolve method using(com.firebase.ui.storage.images ...
I'm trying to use the awesome Glide integration provided by FirebaseUI, but I am unable to do so. I have followed everything described...
Read more >
Fixed: Cannot resolve Symbol || Android Studio - YouTube
This solve is based on android studio Package related problems.If your desired class haven't linked with the project package, you will find ......
Read more >
Cannot resolve symbol properties and gradle exception in ...
How to solve cannot resolve symbol properties and gradle exception in android studio flutter is shown.
Read more >
[Solved]-How do I implement GlideApp in a fragment?-kotlin
Is due to the Fragment.getContext() method being annotated @Nullable. If the fragment is not attached it will return null. context?.let { // If...
Read more >
Java – Using Firebase Storage image with Glide - iTecNote
imageView); // Load the image using Glide Glide.with(this /* context */) .using(new FirebaseImageLoader()) // Cannot resolve method 'using ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found