Fix exported property on incall's NotificationBroadcastReceiver.
exported property was not being respected because it was missing the
"android:" prefix.
Change-Id: I24e8cab83162b0837cddfaaeccfcedfff7de793d
diff --git a/InCallUI/AndroidManifest.xml b/InCallUI/AndroidManifest.xml
index 42d8e31..56cd5e8 100644
--- a/InCallUI/AndroidManifest.xml
+++ b/InCallUI/AndroidManifest.xml
@@ -51,7 +51,7 @@
</service>
<!-- BroadcastReceiver for receiving Intents from Notification mechanism. -->
- <receiver android:name="InCallApp$NotificationBroadcastReceiver" exported="false">
+ <receiver android:name="InCallApp$NotificationBroadcastReceiver" android:exported="false">
<intent-filter>
<action android:name="com.android.incallui.ACTION_HANG_UP_ONGOING_CALL" />
</intent-filter>