Cannot Resolve Symbol new FirebaseImageLoader.Factory()
See original GitHub issueDear 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…
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:
- Created 6 years ago
- Reactions:5
- Comments:6 (2 by maintainers)
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Just a small update: To fix the issue, include
firebase-ui-storage
in your Gradle dependencies.The import responsible for
FirebaseImageLoader
isApologies for not responding… @samtstern : YES! I am loading images without the code (commented out) and its working perfectly…
Regards,
SG