Refactored no data due to roaming notification
Instead of listening to ACTION_ANY_DATA_CONNECTION_STATE_CHANGED,
we now listent to mobile data settings changed, data roaming
settings changed, carrier config changed, roaming status changed,
and default data subscription changed event. This will make the
notification show/hide become more reliable.
Test: manual
bug: 63027846
Merged-In: I413711c4af6374609f87f5aad63eb1a09fd22655
Change-Id: I413711c4af6374609f87f5aad63eb1a09fd22655
diff --git a/src/com/android/phone/DumpsysHandler.java b/src/com/android/phone/DumpsysHandler.java
index d2ae38f..44b88d5 100644
--- a/src/com/android/phone/DumpsysHandler.java
+++ b/src/com/android/phone/DumpsysHandler.java
@@ -15,6 +15,7 @@
public static void dump(Context context, FileDescriptor fd, PrintWriter writer,
String[] args) {
+ PhoneGlobals.getInstance().dump(fd, writer, args);
// Dump OMTP visual voicemail log.
VvmDumpHandler.dump(context, fd, writer, args);
}