I have android app and this string in resources:
Select up to %1$d people!
Thi
You're probably missing the format method of the String class, If you're setting it in a TextView, the proper way is:
textView.setText(String.format(getResources().getString(R.string.create_group_select_people), countMax));