summaryrefslogtreecommitdiffstats
path: root/AndroidManifest_cm.xml
diff options
context:
space:
mode:
authorStephen Bird <sbird@cyngn.com>2016-01-13 18:34:35 -0800
committerStephen Bird <sbird@cyngn.com>2016-04-08 10:10:29 -0700
commite9f88c4174a8dcc9b76b89bfc6da5f64818b54c6 (patch)
tree375a956e58fd0faa3ce90c59cfbf41dca25da6f6 /AndroidManifest_cm.xml
parenta245d5701b0452145b2a813464fa2f1fec74fddd (diff)
downloadandroid_packages_apps_Dialer-e9f88c4174a8dcc9b76b89bfc6da5f64818b54c6.tar.gz
android_packages_apps_Dialer-e9f88c4174a8dcc9b76b89bfc6da5f64818b54c6.tar.bz2
android_packages_apps_Dialer-e9f88c4174a8dcc9b76b89bfc6da5f64818b54c6.zip
Initial Bringup of Ambient and InCall for M
Wire up ambient and start getting incall plugin data. Change-Id: I7b0fbc67ba570401ae7f0ec0aa905edf3eadf4fa
Diffstat (limited to 'AndroidManifest_cm.xml')
-rw-r--r--AndroidManifest_cm.xml36
1 files changed, 36 insertions, 0 deletions
diff --git a/AndroidManifest_cm.xml b/AndroidManifest_cm.xml
new file mode 100644
index 000000000..d99601953
--- /dev/null
+++ b/AndroidManifest_cm.xml
@@ -0,0 +1,36 @@
+<?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" />
+ <uses-permission android:name="com.cyanogen.ambient.permission.PUBLISH_DISCOVERY_NUDGE" />
+
+ <application>
+
+ <receiver android:name=".incall.CallMethodStatusReceiver"
+ android:enabled="true"
+ android:exported="true">
+ <intent-filter>
+ <action android:name="cyanogen.ambient.core.incall.action.plugin_status_changed"/>
+ </intent-filter>
+ </receiver>
+
+ </application>
+</manifest>