Skip to content

Commit

Permalink
add https support for intents
Browse files Browse the repository at this point in the history
  • Loading branch information
ajs124 committed Mar 31, 2015
1 parent d5f068d commit 8f40c99
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@
<data android:scheme="http" android:host="www.reddit.com" android:pathPattern="/r/.*/" />
<data android:scheme="http" android:host="reddit.com" android:pathPattern="/r/.*/" />
<data android:scheme="http" android:host="redd.it" android:pathPattern="/" />
<data android:scheme="https" android:host="www.reddit.com" android:pathPattern="/r/.*/" />
<data android:scheme="https" android:host="reddit.com" android:pathPattern="/r/.*/" />
<data android:scheme="https" android:host="redd.it" android:pathPattern="/" />
</intent-filter>

<meta-data
Expand All @@ -88,6 +91,10 @@
<data android:scheme="http" android:host="www.reddit.com" android:pathPrefix="/comments" />
<data android:scheme="http" android:host="reddit.com" android:pathPattern="/r/.*/comments/.*" />
<data android:scheme="http" android:host="reddit.com" android:pathPrefix="/comments" />
<data android:scheme="https" android:host="www.reddit.com" android:pathPattern="/r/.*/comments/.*" />
<data android:scheme="https" android:host="www.reddit.com" android:pathPrefix="/comments" />
<data android:scheme="https" android:host="reddit.com" android:pathPattern="/r/.*/comments/.*" />
<data android:scheme="https" android:host="reddit.com" android:pathPrefix="/comments" />
</intent-filter>
<meta-data
android:name="android.support.PARENT_ACTIVITY"
Expand Down

0 comments on commit 8f40c99

Please sign in to comment.