commit | 3ef0e5fc4faad7f8c22cbe77196fd8d060ca6a95 | [log] [tgz] |
---|---|---|
author | Naina Nalluri <nainanalluri@google.com> | Thu Apr 11 04:42:28 2019 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Thu Apr 11 04:42:28 2019 +0000 |
tree | 8eb84a30a46c900d0f51b54293ed81ef8730acb4 | |
parent | d13938b1f29a36542acd81ad44733ae4cb8a3bb1 [diff] | |
parent | dfbe891e39e66c6676d918107318da1c37017389 [diff] |
Merge "Add background flag to CI system update intent" into qt-dev
diff --git a/src/com/android/settings/system/SystemUpdatePreferenceController.java b/src/com/android/settings/system/SystemUpdatePreferenceController.java index dd04409..38a88b9 100644 --- a/src/com/android/settings/system/SystemUpdatePreferenceController.java +++ b/src/com/android/settings/system/SystemUpdatePreferenceController.java
@@ -139,7 +139,8 @@ } Log.d(TAG, "ciActionOnSysUpdate: broadcasting intent " + intentStr + " with extra " + extra + ", " + extraVal); + intent.addFlags(Intent.FLAG_RECEIVER_INCLUDE_BACKGROUND); mContext.getApplicationContext().sendBroadcast(intent); } } -} \ No newline at end of file +}