Remove ViewNotificationService entry from Contacts manifest

Removed the extra ViewNotificationService entry from AndroidManifest.xml
that was causing a crash during an incoming call

Change-Id: Ib298e74fbdf23f913897b87a74a9f318d3ce4c74
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index f0f15ea..6afa61f 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -489,16 +489,6 @@
             android:exported="false"
         />
 
-        <!-- Service that is exclusively for the Phone application that sends out a view
-             notification. This service might be removed in future versions of the app  -->
-        <service android:name=".ViewNotificationService"
-            android:permission="android.permission.WRITE_CONTACTS"
-            android:exported="true">
-            <intent-filter>
-                <action android:name="com.android.contacts.VIEW_NOTIFICATION" />
-                <data android:mimeType="vnd.android.cursor.item/contact" />
-            </intent-filter>
-        </service>
         <meta-data android:name="android.nfc.disable_beam_default" android:value="true" />
     </application>
 </manifest>