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?
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?
It suggests you to replace the three '.' characters to a single '...' character.
…
means ...
Instead of Scanning...
you need Scanning…
in that string Resource.
Replace your string
<string name="scanning">Scanning... </string>
With this string
<string name="scanning">Scanning…</string>