Issue
Today I have opened Android Studio and this is what I find:
and the same is happening for my resources files (strings, styles, dimensions, colors):
Solution
<string>
and <activity>
elements don't have the attribute called 'eventName'
. They have the required element 'name'
which in your case is missing.
Looks like you've made the search-and-replace operation and replaced 'name'
attributes with 'eventName'
by mistake. Revert this replacement and the issue will disappear.
Answered By - aga
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.