include upper case URI schemes for matching URIs from QR Codes

Android's scheme matcher is case-sensitive, so include
ALL CAPS versions to support ALL CAPS URLs in QR Codes.
QR Codes have a special ALL CAPS mode that uses a reduced
character set, making for more compact QR Codes.

This reverts:
We should not encourage all caps urls
2651b81792bdeed0db3c3960d0b7283536611012
This commit is contained in:
Hans-Christoph Steiner 2014-01-22 19:43:41 -05:00
parent 1f38a84fa9
commit ea9dec34b3

View File

@ -113,8 +113,16 @@
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<!--
Android's scheme matcher is case-sensitive, so include
ALL CAPS versions to support ALL CAPS URLs in QR Codes.
QR Codes have a special ALL CAPS mode that uses a reduced
character set, making for more compact QR Codes.
-->
<data android:scheme="fdroidrepo" />
<data android:scheme="FDROIDREPO" />
<data android:scheme="fdroidrepos" />
<data android:scheme="FDROIDREPOS" />
</intent-filter>
</activity>