Hi,
I've been translating the app into Hebrew at translatewiki. I didn't actually try running yet, so this whole issue might be wrong, but I'm pretty sure that the "zero" quantity in English plurals doesn't work. The quantity identifiers for different languages are based on their grammar, and since zero in English is the same as "other" (i.e. anything other than "one"), "zero" is not a valid string for English.
Furthermore, translatable strings Android apps don't support specific quantities, like MediaWiki does (again, this is AFAIK, and I might be wrong鈥擨'm not an Android expert).
The only string that I find with "zero" at the moment is contributions_subtitle.
To make it actually work as intended, it probably has to be rewritten with a condition.
I think we are talking about:
<plurals name="contributions_subtitle">
<item quantity="zero">No uploads yet</item>
<item quantity="one">1 upload</item>
<item quantity="other">%d uploads</item>
</plurals>
(from app/src/main/res/values/strings.xml)
And yes, it appears that the "zero" rule is not used for the value 0 in English.

@whym I am picking this up. Creating a PR for the same
PR created for this issue
The PR looks good, but what can be done for languages other than English? There seems to be several approaches. Which is the best?
quantity="zero" shouldn't be in the English strings.xml at all, and there shouldn't be a need to check for the locale.
The question is whether you want special handling for zero at all. In English, the word "files" is the same in "0 files" and "5 files". Can it simply be "0 files", or is it important for you to say "No uploads yet"? If it's not important, just remove the condition.
It looks like the solution #546 is not working well.
Translators are seeing strings like this as the source text which can be cryptic.
{{PLURAL|zero=@string/contributions_subtitle_zero|one=%d upload|%d uploads}}
https://translatewiki.net/w/i.php?title=Wikimedia:Commons-android-strings-contributions_subtitle/en&diff=prev&oldid=7378080
I encountered a problem here. [[Wikimedia:Commons-android-strings-contributions subtitle/uk]] cannot be updated since the last change in English source in 2018. The system doesn't allow me to save an edit with |zero= in it.
Translators are still unable to translate this message: https://phabricator.wikimedia.org/T267142
Seems like the case for the string "contributions_subtitle". Should be probably simpler to remove the plural item for the quantity "zero" and handle it via branch statements instead of from the strings, raising a PR soon
@Nikerabbit , we have merged a fix, please let us know if the problem still occurs.