Android Studio: name attribute must be defined
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 to share