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:
Andy2 2010-09-20 19:38:26 -07:00
parent 0ac23458ba
commit 9b98d89722

View file

@ -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" / -->