mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-29 08:34:37 +01:00
add mimeType entry to data. This coupled with the right apache
AddType config means the browser doesn't get a chance to download dicts, giving users one less way to get confused.
This commit is contained in:
parent
0ac23458ba
commit
9b98d89722
1 changed files with 9 additions and 2 deletions
|
@ -89,10 +89,17 @@
|
|||
<action android:name="android.intent.action.VIEW"></action>
|
||||
<category android:name="android.intent.category.DEFAULT"></category>
|
||||
<category android:name="android.intent.category.BROWSABLE"></category>
|
||||
<data android:scheme="file" android:host="*" android:pathPattern=".*\\.xwd" />
|
||||
<data android:scheme="http" android:host="*" android:pathPattern=".*\\.xwd" />
|
||||
<data android:scheme="file" android:host="*"
|
||||
android:pathPattern=".*\\.xwd" />
|
||||
<data android:scheme="http"
|
||||
android:mimeType="application/x-xwordsdict"
|
||||
android:host="*"
|
||||
android:pathPattern=".*\\.xwd" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
</application>
|
||||
</manifest>
|
||||
|
||||
|
||||
<!--data android:mimeType="application/x-xwordsdict" android:host="*" android:pathPattern=".*\\.xwd" / -->
|
||||
|
|
Loading…
Add table
Reference in a new issue