Android Studio: name attribute must be defined

I opened Android Studio today and this is what I find: enter image description here

and the same happens for my resource files (lines, styles, sizes, colors): enter image description here

+3


source to share


1 answer


The elements

<string>

and <activity>

have no attribute 'eventName'

. They have a necessary element 'name'

that is missing in your case.
It looks like you performed a find and replace operation and replaced with 'name'

attributes 'eventName'

by mistake. Revert this replacement and the problem goes away.



+9


source







All Articles