This code gives error on String.format(...):
inviterNameTitleView.setText(
String.format(
context.getString(R.string.sharing_invite_title),
inviter.getNameForTitle()
)
);
R.string.sharing_invite_title
is <string name="sharing_invite_title">%s invites you to smth.</string>
What could be the reason of this error? The symbol that results in error is a right-to-left alphabet letter. Googling doesn't give any answers.