Reputation: 315
I created a new project from scratch in android studio and tried connecting it to the firebase by following steps provided in help>firebase>database.
I got green checked for connecting app to firebase but I set up dependencies correctly . however I get setvalue method error.
I have attached a screenshot.
Upvotes: 0
Views: 336
Reputation: 7698
Capitalisation is very important.
myRef.setvalue("Hello World"); // this will not work
myRef.setValue("Hello World"); // this will work
Upvotes: 2