Debugging help for issue #8734824: WATCHDOG KILLING SYSTEM PROCESS

Not really, but the API changed so we had to do something.

Change-Id: Ia62fcb49f699a0e1f915b9599babbbc2d30e011b
diff --git a/uiautomator/library/testrunner-src/com/android/uiautomator/core/UiAutomationShellWrapper.java b/uiautomator/library/testrunner-src/com/android/uiautomator/core/UiAutomationShellWrapper.java
index 77283cd..1fa9bac 100644
--- a/uiautomator/library/testrunner-src/com/android/uiautomator/core/UiAutomationShellWrapper.java
+++ b/uiautomator/library/testrunner-src/com/android/uiautomator/core/UiAutomationShellWrapper.java
@@ -116,5 +116,12 @@
             /* do nothing and let activity proceed normally */
             return 0;
         }
+
+        @Override
+        public int systemNotResponding(String message)
+                throws RemoteException {
+            /* do nothing and let system proceed normally */
+            return 0;
+        }
     }
 }