summaryrefslogtreecommitdiffstats
path: root/testapps/AndroidManifest.xml
diff options
context:
space:
mode:
authorHall Liu <hallliu@google.com>2017-02-22 19:05:07 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-02-22 19:05:07 +0000
commit86f417aa84995ffba44ea98b32d5ba4ee338aa6f (patch)
tree208bd848391e2ba05f658861be0c1f23684f51e8 /testapps/AndroidManifest.xml
parent6dc6e969f2179e21402ad7ac1b453ea7273415aa (diff)
parent1d36154ab9ace2609131eb86a242513c20dc53d8 (diff)
downloadandroid_packages_services_Telecomm-86f417aa84995ffba44ea98b32d5ba4ee338aa6f.tar.gz
android_packages_services_Telecomm-86f417aa84995ffba44ea98b32d5ba4ee338aa6f.tar.bz2
android_packages_services_Telecomm-86f417aa84995ffba44ea98b32d5ba4ee338aa6f.zip
Add support for RTT calls (part 1) am: dd68bc36a3 am: 399f7e50b0
am: 1d36154ab9 Change-Id: Id768015a354c9a3428b4c817507d058df6ea15f7
Diffstat (limited to 'testapps/AndroidManifest.xml')
-rw-r--r--testapps/AndroidManifest.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/testapps/AndroidManifest.xml b/testapps/AndroidManifest.xml
index 6c7202b9..2cdfc554 100644
--- a/testapps/AndroidManifest.xml
+++ b/testapps/AndroidManifest.xml
@@ -81,6 +81,16 @@
</intent-filter>
</activity>
+ <activity android:name="com.android.server.telecom.testapps.TestRttActivity"
+ android:process="com.android.server.telecom.testapps.TestInCallService"
+ android:label="@string/rttUiLabel"
+ android:launchMode="singleInstance">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
+
<activity android:name="com.android.server.telecom.testapps.TestCallActivity"
android:theme="@android:style/Theme.NoDisplay"
android:label="@string/testCallActivityLabel">
@@ -105,6 +115,11 @@
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="int" />
</intent-filter>
+ <intent-filter>
+ <action android:name="android.telecom.testapps.ACTION_RTT_CALL" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <data android:scheme="tel" />
+ </intent-filter>
</activity>
<receiver android:name="com.android.server.telecom.testapps.CallNotificationReceiver"