Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
**Undefined class 'StorageReference'. while uploading image in firebase using flutter **
According to this changelog, StorageReference has been renamed to Reference since 5.0.0-dev.1
Perform the change accordingly, also go through the changelog as there are some other breaking changes as well
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 days ago.
Improve this question
Using a aurdino board and when the sensor present in aurdino borad triggers means sense data
I want to record that time and want to store it in database
I tried to push that data to server but failed , my approach was wrong i guess
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 days ago.
Improve this question
I am trying to run the StableDiffusion model through Jina AI but the command line kept showing this for very long time. I don't know where I am going wrongenter image description here
I tried running the complete file as well as through the Jina Executor Hub as well
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 months ago.
Improve this question
Gaving an issue with the add of Scaffoolding item. Getting an error like this..
this the error
this is solution files.
Any tips ?
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 years ago.
Improve this question
Please I need some help:
Can I do "Collection group queries" to Firestore from Cloud Function using firebase_functions_interop?
firebase_functions_interop: https://github.com/pulyaevskiy/firebase-functions-interop
Thanks in advance.
At a quick glance the firebase_functions_interop library does't seem to yet implement Collection Group Queries. I noticed that you also filed an issue on the repo, which should probably be turned into a feature request.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
How do I create 2 Cloud Functions for 1 project? Currently, I'm only able to deploy one.
No you can deploy many Fuctions
Your index.js
exports.firstfunction= functions.database
.ref('').onWrite(event => {
};
exports.secondfunction= functions.database
.ref('').onWrite(event => {
}