Back to project page YourConsole.
The source code is released under:
MIT License
If you think the Android project YourConsole listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.akisute.yourconsole.app.intent; /* ww w . j a v a 2 s. c o m*/ import android.app.Notification; public class Intents { public static final String ACTION_SAVE = "com.akisute.yourconsole.action.SAVE"; public static final String ACTION_START_LOGCAT_RECORDING = "com.akisute.yourconsole.action.START_LOGCAT_RECORDING"; public static final String EXTRA_PACKAGE_NAME = "senderPackageName"; public static final String EXTRA_TEXT_LINES = Notification.EXTRA_TEXT_LINES; public static final String MIME_TYPE_PLAINTEXT = "text/plain"; public static final String MIME_TYPE_LOGCAT = "application/vnd.com.akisute.yourconsole.logcat"; }