-5

The error is : C:\Users\محمود\Desktop\Pre_yea\app\src\main\res\values\strings.xml Error:(2) Multiple substitutions specified in non-positional format; did you mean to add the formatted="false" attribute? Error:(2) Found tag where is expected

When I checked the strings.xml file and I didn’t find and tag that does not match the right status , Also in Java file they gave me error "cannot resolve R"

Phantômaxx
  • 37,901
  • 21
  • 84
  • 115
  • [issue in string array in xml file](https://stackoverflow.com/questions/12605684/issue-in-string-array-in-xml-file-multiple-substitutions-specified-in-non-posit) Your question is similar to this one. – ruchita thombre Sep 21 '17 at 11:29

1 Answers1

0

If you added formatted=false then format specifiers(%,$ etc.) in your string resource is disabled and Formatter wont recognize them. this will definitely help you

Nyagaka Enock
  • 444
  • 1
  • 10
  • 20