summaryrefslogtreecommitdiffstats
path: root/AndroidManifest_cm.xml
diff options
context:
space:
mode:
Diffstat (limited to 'AndroidManifest_cm.xml')
-rw-r--r--AndroidManifest_cm.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/AndroidManifest_cm.xml b/AndroidManifest_cm.xml
new file mode 100644
index 000000000..c78f504dc
--- /dev/null
+++ b/AndroidManifest_cm.xml
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2006 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.dialer">
+
+ <!-- Connect to AmbientCore to use InCall Plugins -->
+ <uses-permission android:name="com.cyanogen.ambient.permission.BIND_INCALL_SERVICE" />
+ <uses-permission android:name="com.cyanogen.ambient.permission.PLUGIN_STATUS_CHANGED" />
+ <application>
+
+ <receiver android:name="com.android.contacts.incall.CallMethodStatusReceiver"
+ android:enabled="true"
+ android:exported="true">
+ <intent-filter>
+ <action android:name="cyanogen.ambient.core.plugin.incall.action.plugin_status_changed"/>
+ </intent-filter>
+ </receiver>
+
+ </application>
+</manifest>