Android Studio: name attribute must be defined
I opened Android Studio today and this is what I find:
and the same happens for my resource files (lines, styles, sizes, colors):
+3
Lisa anne
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
aga
source
to share