mirror of
https://github.com/scratchfoundation/scratchjr.git
synced 2024-11-28 18:15:37 -05:00
Avoid concatenation in AndroidManifest
Trying to use the extension pattern this way gets an error when uploading the APK to Google Play, so just hard code the extension patters. This won’t work for PBS kids version.
This commit is contained in:
parent
fe2ad22efb
commit
ec9387115f
1 changed files with 4 additions and 5 deletions
|
@ -45,11 +45,10 @@
|
|||
<!-- These additional pathPattern blocks are to allow for paths with
|
||||
additional periods in them. See:
|
||||
http://stackoverflow.com/questions/3400072/pathpattern-to-match-file-extension-does-not-work-if-a-period-exists-elsewhere-i/8599921 -->
|
||||
<data android:pathPattern="@{`.*\\.` + @string/share_extension_filter}"/>
|
||||
<data android:pathPattern="@{`.*\\..*\\.` + @string/share_extension_filter}"/>
|
||||
<data android:pathPattern="@{`.*\\..*\\..*\\.` + @string/share_extension_filter}"/>
|
||||
<data android:pathPattern="@{`.*\\..*\\..*\\..*\\.` + @string/share_extension_filter}"/>
|
||||
<data android:pathPattern="@{`.*\\..*\\..*\\..*\\..*\\.` + @string/share_extension_filter}"/>
|
||||
<data android:pathPattern=".*\\..*\\.sjr"/>
|
||||
<data android:pathPattern=".*\\..*\\..*\\.sjr"/>
|
||||
<data android:pathPattern=".*\\..*\\..*\\..*\\.sjr"/>
|
||||
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.sjr"/>
|
||||
<data android:host="*" />
|
||||
</intent-filter>
|
||||
<intent-filter>
|
||||
|
|
Loading…
Reference in a new issue