summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantos Cordon <santoscordon@google.com>2014-01-28 01:24:50 -0800
committerSantos Cordon <santoscordon@google.com>2014-01-28 09:27:35 +0000
commit64398d93c16dd82812347a77768f4e765938d735 (patch)
tree086949f7fc86e7857e8692ad0677f9f414b34c80
parent032467cac871761be0f86c5a843644e3ef495593 (diff)
downloadPhone-64398d93c16dd82812347a77768f4e765938d735.tar.gz
Fix exported property on NotificationBroadcastReceiver.
"exported" property was missing "android:" prefix and as a result was not being respected. bug:11367588 Change-Id: I2ec5b39bfb68e652d19d4b619889db9414f01109
-rw-r--r--AndroidManifest.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 404ca380..e9173e5a 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -521,7 +521,7 @@
</receiver>
<!-- BroadcastReceiver for receiving Intents from Notification mechanism. -->
- <receiver android:name="PhoneGlobals$NotificationBroadcastReceiver" exported="false">
+ <receiver android:name="PhoneGlobals$NotificationBroadcastReceiver" android:exported="false">
<intent-filter>
<action android:name="com.android.phone.ACTION_HANG_UP_ONGOING_CALL" />
<action android:name="com.android.phone.ACTION_CALL_BACK_FROM_NOTIFICATION" />