summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXia Wang <xiaw@google.com>2013-02-01 16:44:57 -0800
committerXia Wang <xiaw@google.com>2013-02-01 16:44:57 -0800
commiteb22ed91710426b0c7a3cba0ef7c8a4f14044d35 (patch)
treeb508c66468d39516dc4c1145052d2e831a4159d5
parent0214f205f619ebc23b5069880afdb09259b0ced7 (diff)
downloadframeworks_base-eb22ed91710426b0c7a3cba0ef7c8a4f14044d35.zip
frameworks_base-eb22ed91710426b0c7a3cba0ef7c8a4f14044d35.tar.gz
frameworks_base-eb22ed91710426b0c7a3cba0ef7c8a4f14044d35.tar.bz2
Fix Connectivity Manager test:
-Due to security change, the test pid is not allowed to broadcast ACTION_AIRPLANE_MODE_CHANGED intent, which is a pretected intent and can only be sent by the system, change the test app to use system user id. Change-Id: I2525e30c13a97d5fcab0fc9537e8fac18e0b5457
-rw-r--r--core/tests/ConnectivityManagerTest/AndroidManifest.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/tests/ConnectivityManagerTest/AndroidManifest.xml b/core/tests/ConnectivityManagerTest/AndroidManifest.xml
index 5db7ffc..2c34d47 100644
--- a/core/tests/ConnectivityManagerTest/AndroidManifest.xml
+++ b/core/tests/ConnectivityManagerTest/AndroidManifest.xml
@@ -17,7 +17,7 @@
<!-- package name must be unique so suffix with "tests" so package loader doesn't ignore us -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.connectivitymanagertest"
- android:sharedUserId="com.android.uid.test">
+ android:sharedUserId="android.uid.system">
<!-- We add an application tag here just so that we can indicate that
this package needs to link against the android.test library,