summaryrefslogtreecommitdiffstats
path: root/java/com/android/dialer/callstats/AndroidManifest.xml
diff options
context:
space:
mode:
authorDanny Baumann <dannybaumann@web.de>2018-06-27 15:53:56 +0200
committerMichael Bestas <mkbestas@lineageos.org>2018-09-01 17:52:05 +0300
commit36f4b8a1743304be22bb08976d4bb9b1a9fd76c9 (patch)
treeca98bfac95e5fc18debf38214693cf8c23fc7aad /java/com/android/dialer/callstats/AndroidManifest.xml
parent818eeefa2b9023e9eb5c0fe530d8a316fd52928f (diff)
downloadandroid_packages_apps_Dialer-36f4b8a1743304be22bb08976d4bb9b1a9fd76c9.tar.gz
android_packages_apps_Dialer-36f4b8a1743304be22bb08976d4bb9b1a9fd76c9.tar.bz2
android_packages_apps_Dialer-36f4b8a1743304be22bb08976d4bb9b1a9fd76c9.zip
Re-add call statistics.
Change-Id: I9f2b6e912ca69a5aa7a1790bed06304ee953e752
Diffstat (limited to 'java/com/android/dialer/callstats/AndroidManifest.xml')
-rw-r--r--java/com/android/dialer/callstats/AndroidManifest.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/java/com/android/dialer/callstats/AndroidManifest.xml b/java/com/android/dialer/callstats/AndroidManifest.xml
new file mode 100644
index 000000000..8b173561b
--- /dev/null
+++ b/java/com/android/dialer/callstats/AndroidManifest.xml
@@ -0,0 +1,31 @@
+<!-- Copyright (C) 2018 The LineageOS 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">
+
+ <application>
+
+ <activity android:name=".callstats.CallStatsDetailActivity"
+ android:label="@string/call_stats_detail_title"
+ android:theme="@style/DialerThemeBase.NoActionBar"
+ android:screenOrientation="portrait">
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>