diff options
author | Allan Wang <me@allanwang.ca> | 2017-09-16 22:45:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-16 22:45:25 -0400 |
commit | e55fac98ef50a55f0064111cb767d1d7e3959bcc (patch) | |
tree | 3036c20343f5988ac04dfa2a225f991ac23ed8d5 /app/src/main/AndroidManifest.xml | |
parent | 86838453bb1d712cd9ebe580333e188a02b60f5a (diff) | |
download | frost-e55fac98ef50a55f0064111cb767d1d7e3959bcc.tar.gz frost-e55fac98ef50a55f0064111cb767d1d7e3959bcc.tar.bz2 frost-e55fac98ef50a55f0064111cb767d1d7e3959bcc.zip |
Feature/share links (#297)
* Add base for receiving plain text
* Update theme for links
* Theme bottom bar
* Add warning for plain text
* Compile all themes
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 91932a6b..92664344 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -61,11 +61,15 @@ android:launchMode="singleInstance" android:taskAffinity="com.pitchedapps.frost.single.web" android:theme="@style/FrostTheme.Overlay.Slide"> + <intent-filter> + <action android:name="android.intent.action.SEND" /> + <category android:name="android.intent.category.DEFAULT" /> + <data android:mimeType="text/plain" /> + </intent-filter> <intent-filter android:autoVerify="true" tools:ignore="UnusedAttribute"> <action android:name="android.intent.action.VIEW" /> - <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> |