DSteve595 / Put.io

Put.io for Android!
MIT License
142 stars 30 forks source link

Add intent-receiver for opening .torrent files hosted on https to AndroidManifest.xml #31

Closed jakubkinst closed 9 years ago

jakubkinst commented 9 years ago
<intent-filter>
                <action android:name="android.intent.action.VIEW" />

                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />

                <data
                    android:host="*"
                    android:pathPattern=".*\\.torrent"
                    android:scheme="https" />
</intent-filter>
DSteve595 commented 9 years ago

Thanks, looks good! Should've added this a while ago, the activity already even receives HTTPS links.