diff options
author | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | 2020-03-13 13:22:10 +0000 |
---|---|---|
committer | Lucas Lin <lucaslin@google.com> | 2020-03-16 08:07:10 +0000 |
commit | 97397fadd3e064882600f7dff34aa00de3b4bd79 (patch) | |
tree | f60692fb5c2260f414c0e472e16349aff45fc7c3 | |
parent | 928c1ea8c3850854353cbb503d6ebcb7cba2d5f5 (diff) |
Change the sender name of notification
Current sender name of connected notification may be not
meaningful to the user. Change the sender name from NetworkStack
to Connectivity Manager.
Bug: 150903640
Test: 1. Build pass.
2. Flash the ROM and see if the sender name has changed.
Change-Id: Ib2acb18f9f56f94e39651d6630bd1c99d4f958b2
Merged-In: Ica379240eace4a8e8f43fe6053825f544c29bcc6
-rw-r--r-- | AndroidManifestBase.xml | 2 | ||||
-rw-r--r-- | res/values/strings.xml | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/AndroidManifestBase.xml b/AndroidManifestBase.xml index 69a4da4..1ad0848 100644 --- a/AndroidManifestBase.xml +++ b/AndroidManifestBase.xml @@ -21,7 +21,7 @@ android:versionCode="11" android:versionName="Q-initial"> <application - android:label="NetworkStack" + android:label="@string/application_label" android:defaultToDeviceProtectedStorage="true" android:directBootAware="true" android:usesCleartextTraffic="true"> diff --git a/res/values/strings.xml b/res/values/strings.xml index e9900b8..f1e20f3 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -47,4 +47,7 @@ information page, so that the user can access that page. This is the message of the notification. [CHAR LIMIT=50] --> <string name="tap_for_info">Tap for venue information</string> -</resources>
\ No newline at end of file + + <!-- The label of application. It's also a sender name of notification. [CHAR LIMIT=50]--> + <string name="application_label">Connectivity Manager</string> +</resources> |