Created
May 1, 2015 20:05
-
-
Save dlew/e7e42c96f6747738533d to your computer and use it in GitHub Desktop.
Fully supporting "note to self" and "take a note" on Android
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<activity | |
android:name="com.yourapp.ui.NoteTaker"> | |
<intent-filter> | |
<action android:name="android.intent.action.SEND" /> | |
<category android:name="android.intent.category.DEFAULT" /> | |
<category android:name="com.google.android.voicesearch.SELF_NOTE" /> | |
<data android:mimeType="*/*" /> | |
</intent-filter> | |
<intent-filter> | |
<action android:name="com.google.android.gm.action.AUTO_SEND" /> | |
<category android:name="android.intent.category.DEFAULT" /> | |
<data android:mimeType="text/plain" /> | |
</intent-filter> | |
</activity> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment