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:
parent
1f38a84fa9
commit
ea9dec34b3
@ -113,8 +113,16 @@
|
|||||||
<category android:name="android.intent.category.BROWSABLE" />
|
<category android:name="android.intent.category.BROWSABLE" />
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
<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="FDROIDREPO" />
|
||||||
<data android:scheme="fdroidrepos" />
|
<data android:scheme="fdroidrepos" />
|
||||||
|
<data android:scheme="FDROIDREPOS" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user