Multiple substitutions specified in non-positional format; did you mean to add the formatted="false" attribute? strings.xml
It happens in string files on strings with %
"%s/%s (Linux; Android)"
You should change it to
"%1$s/%2$s (Linux; Android)"
Source: developer.android.com
Without making any complication just use like this, With error you will get the line number as well, Using notepad++, go to relevant line number and do the following
ReplyDeletesome %2$s content
use formatted="false" and change like this
some %2$s content
Problem should be solve now