Error: "Open quote is expected for attribute "{1}" associated with an element type ...

While developing android applications using eclipse you may get error "Open quote is expected for attribute "{1}" associated with an  element type ...".
This may happen sometimes because you might have by mistake typed closed quote (“) instead of open quote("). Change the quotes at start and end of attribute and you are done.
 

No comments:

Post a Comment

Golang: Http POST Request with JSON Body example

Go standard library comes with "net/http" package which has excellent support for HTTP Client and Server.   In order to post JSON ...