Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The value of attribute "name" associated with an element type "item" must not contain the '<' character

Tags:

android

java.io.IOException: Could not parse XML from android/accounts/annotations.xml

Anybody can help with the error above ?

like image 284
WENGGO Avatar asked May 27 '19 07:05

WENGGO


People also ask

Which attribute name must be followed by the'='character?

- Stack Overflow "Attribute name x associated with an element type "item" must be followed by the ' = ' character"? Bookmark this question. Show activity on this post. Attribute name "Abarth" associated with an element type "item" must be followed by the ' = ' character.

What is an attribute in DynamoDB?

To set context, in DynamoDB, AWS’s managed NoSQL (schema-less) service, the name of a table record is an Item and each field/column of that Item is called an Attribute. What I’ll explain here is how to add a new Attribute to an existing Item.

Can updateitem add a map attribute to an attribute that doesn’t already exist?

What I learned is that UpdateItem cannot add a map attribute to an attribute that doesn’t already exist. Another way of saying this, UpdateItem would not create a net new map, it expects an empty map to already exist. In my above example, there’s no way to use UpdateItem to create this:


1 Answers

I have faced the same issue and there is two way you can fix it :

1 - Cleaning the project - (worked for me)

  • In android studio , Build -> Clean Project

2 - Checking the api-versions.xml (in other case this should work)

Open your api-versions.xml available on

C:\users\xxxx\AppData\Local\Android\sdk\platform-tools\api\api-versions.xml

and then change this:

<method name="&lt;init>()V"/>

to this

<method name="&lt;init()V"/>
like image 127
ismail alaoui Avatar answered Oct 03 '22 08:10

ismail alaoui