Reputation: 255
I'm getting this warning:
Replace "..." with ellipsis character (..., '…';) ?
in my strings.xml
at this line:
string name="scanning">Scanning... string>
If someone could help me please?
Upvotes: 1
Views: 4628
Reputation: 76817
…
means ...
Instead of Scanning...
you need Scanning…
in that string Resource.
Upvotes: 2
Reputation: 2641
Replace your string
<string name="scanning">Scanning... </string>
With this string
<string name="scanning">Scanning…</string>
Upvotes: 0
Reputation: 7293
It suggests you to replace the three '.' characters to a single '...' character.
Upvotes: 2