Increase timeout for IntentServiceTest

This test could probably be improved by adding latches rather than
waiting for a fixed amount of time.

Bug 6297264

Change-Id: I6a9396f58ef519799cbfb0177718610686934529
diff --git a/tests/tests/app/src/android/app/cts/IntentServiceTest.java b/tests/tests/app/src/android/app/cts/IntentServiceTest.java
index f175258..a3e8edc 100644
--- a/tests/tests/app/src/android/app/cts/IntentServiceTest.java
+++ b/tests/tests/app/src/android/app/cts/IntentServiceTest.java
@@ -28,7 +28,7 @@
 public class IntentServiceTest extends ActivityTestsBase {
 
     private Intent mIntent;
-    private static final int TIMEOUT_MSEC = 5000;
+    private static final int TIMEOUT_MSEC = 30000;
     private boolean mConnected;
 
     @Override