I'm trying to upload my app in playstore but I'm grtting your APK or Android App Bundle contains a string resource with name array/newline_values and configuration (default) that has an unescaped new line. Please use \ to express newlines in your resource definition. issue \u000a \u000d\u000a this is my array whats the issue in this
Asked
Active
Viewed 372 times
1
-
1Please state your question more clearly. I think the play store error message is pretty clear. You need to fix the string value `newline_values` in one of your string resource files (probably `strings.xml`). – Alexander Hoffmann May 05 '20 at 13:42
-
1
- \u000a
- \u000d\u000a
thanks for your rpl this is my array whats the issue in this – sai android May 05 '20 at 13:51 -
can this help? https://stackoverflow.com/questions/16786739/how-to-use-unicode-in-android-resource – Filoména Petržlénová May 05 '20 at 14:24
1 Answers
2
use
\r
for carriage return instead of\u000A
\n
for line feed instead of\u000D

Oussèma Hassine
- 741
- 1
- 7
- 18