Browse Source

Disabled local file/mime bittorrent intent to help users whose private trackers don't play nice (issue 460).

pull/11/head
Eric Kok 12 years ago
parent
commit
a6a0412f92
  1. 8
      android/AndroidManifest.xml

8
android/AndroidManifest.xml

@ -18,8 +18,8 @@
--> -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.transdroid" package="org.transdroid"
android:versionName="1.1.13" android:versionName="1.1.14"
android:versionCode="155" android:versionCode="156"
android:installLocation="auto"> android:installLocation="auto">
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="16" /> <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="16" />
@ -67,12 +67,12 @@
<data android:mimeType="application/x-bittorrent" /> <data android:mimeType="application/x-bittorrent" />
<data android:scheme="file" android:mimeType="application/x-bittorrent" /> <data android:scheme="file" android:mimeType="application/x-bittorrent" />
</intent-filter> </intent-filter>
<intent-filter> <!-- <intent-filter>
<action android:name="android.intent.action.VIEW" /> <action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" /> <category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="file" android:pathPattern=".*\\.torrent" /> <data android:scheme="file" android:pathPattern=".*\\.torrent" />
</intent-filter> </intent-filter> -->
<intent-filter> <intent-filter>
<action android:name="android.intent.action.VIEW" /> <action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />

Loading…
Cancel
Save