summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorScott Kennedy <skennedy@google.com>2013-05-25 21:32:32 -0700
committerScott Kennedy <skennedy@google.com>2013-06-05 20:06:15 -0700
commit560bfadc3151f7a06f3b06e9a6c92cfa534c63ec (patch)
treeafbc7609494b87c443bd7794ede52d58674d7c26 /AndroidManifest.xml
parentf20ed137654153ad0c6f9c8b3173a008b7fe0f1b (diff)
downloadandroid_packages_apps_Email-560bfadc3151f7a06f3b06e9a6c92cfa534c63ec.tar.gz
android_packages_apps_Email-560bfadc3151f7a06f3b06e9a6c92cfa534c63ec.tar.bz2
android_packages_apps_Email-560bfadc3151f7a06f3b06e9a6c92cfa534c63ec.zip
Unify LogTag
There is now only one LogTag class. The static initializer of GmailApplication (existing) and EmailApplication (new) will now set the log tag to "Gmail" and "Email", respectively. Up until that code is run, it will be "UnifiedEmail". "setprop log.tag.Gmail VERBOSE" (or .Email) will trigger all logs to be printed as long as they go through LogUtils, regardless of what tag is used by that individual log. This lets us still turn on logging everywhere in one command, but also lets us use more descriptive tags (like the class name). And since we no longer have three com.android.mail.utils.LogTag classes, builds will be much easier. Also, we now use LogUtils everywhere. Change-Id: I55f1c7a66ce50ead54877a13e40256422a56dc39
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index e7d8d1f83..42e606b55 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -67,6 +67,7 @@
android:name="com.android.email.permission.ACCESS_PROVIDER"/>
<application
+ android:name=".EmailApplication"
android:icon="@mipmap/ic_launcher_mail"
android:label="@string/app_name"
android:theme="@style/UnifiedEmailTheme"