1

**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**

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

sai android
  • 139
  • 1
  • 12

1 Answers1

2

use

  • \r for carriage return instead of \u000A
  • \n for line feed instead of \u000D
Oussèma Hassine
  • 741
  • 1
  • 7
  • 18