blob: b6a89135bf43f93b3bb380b82744cb582b611244 [file] [log] [blame]
The Android Open Source Project9d9730a2009-03-03 19:32:37 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2007 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
Wink Saville79085fc2009-06-09 10:27:23 -07007
The Android Open Source Project9d9730a2009-03-03 19:32:37 -08008 http://www.apache.org/licenses/LICENSE-2.0
Wink Saville79085fc2009-06-09 10:27:23 -07009
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080010 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
Wink Saville79085fc2009-06-09 10:27:23 -070017
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080018<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Dianne Hackbornac72bff2012-09-28 15:42:06 -070019 xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
David Pursehoused3e68452013-09-06 16:46:57 +090020 package="com.android.stk"
21 android:sharedUserId="android.uid.phone">
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080022
Jeff Hamilton75c5c6e2010-02-11 16:25:53 -060023 <original-package android:name="com.android.stk" />
24
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080025 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Preeti Ahuja95919342013-10-01 18:18:55 -070026 <uses-permission android:name="android.permission.GET_TASKS"/>
Amit Mahajan0c707652015-06-11 10:51:05 -070027 <uses-permission android:name="android.permission.RECEIVE_STK_COMMANDS" />
Yoshiaki Naka62bfb0d2017-10-07 16:42:08 +090028 <uses-permission android:name="android.permission.SET_ACTIVITY_WATCHER" />
Michal Karpinski800150a2019-01-25 12:00:38 +000029 <uses-permission android:name="android.permission.START_ACTIVITIES_FROM_BACKGROUND" />
Yoshiaki Naka40ab4752017-09-19 20:14:58 +090030 <uses-permission android:name="android.permission.USER_ACTIVITY" />
Yuta Uife965802017-11-07 20:12:37 +090031 <uses-permission android:name="android.permission.VIBRATE" />
32 <uses-permission android:name="android.permission.WAKE_LOCK" />
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080033
Joey2a7477f2018-02-13 18:43:21 +020034 <application android:icon="@mipmap/ic_launcher"
David Pursehoused3e68452013-09-06 16:46:57 +090035 android:label="@string/app_name"
36 android:clearTaskOnLaunch="true"
Wink Savillee68857d2014-10-17 15:23:05 -070037 android:process="com.android.phone"
Sanket Padawe35737b02016-09-09 10:16:55 -070038 android:taskAffinity="android.task.stk"
39 android:defaultToDeviceProtectedStorage="true"
40 android:directBootAware="true">
Legler Wuaeefef52014-10-27 00:57:18 +080041
42 <activity android:name="StkMain"
43 android:theme="@android:style/Theme.NoDisplay"
44 android:label="@string/app_name"
Legler Wuc32560e2015-01-17 00:24:13 +080045 android:enabled="false"
Jack Yu556820e2015-08-31 14:55:51 -070046 android:exported="true"
Legler Wuaeefef52014-10-27 00:57:18 +080047 android:taskAffinity="android.task.stk.StkLauncherActivity">
David Pursehoused3e68452013-09-06 16:46:57 +090048 <intent-filter>
49 <action android:name="android.intent.action.MAIN" />
50 <category android:name="android.intent.category.LAUNCHER" />
51 </intent-filter>
52 </activity>
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080053
Legler Wuaeefef52014-10-27 00:57:18 +080054 <activity android:name="StkLauncherActivity"
Takanori Nakano48544352016-12-02 18:32:59 +090055 android:theme="@android:style/Theme.Material.Light"
Legler Wuaeefef52014-10-27 00:57:18 +080056 android:label="@string/app_name"
Jack Yu000681a2015-07-29 13:30:58 -070057 android:exported="false"
Legler Wuaeefef52014-10-27 00:57:18 +080058 android:taskAffinity="android.task.stk.StkLauncherActivity">
59 <intent-filter>
60 <action android:name="android.intent.action.VIEW" />
61 <action android:name="android.intent.action.PICK" />
62 <category android:name="android.intent.category.DEFAULT" />
63 </intent-filter>
64 </activity>
65
David Pursehoused3e68452013-09-06 16:46:57 +090066 <activity android:name="StkMenuActivity"
Takanori Nakano48544352016-12-02 18:32:59 +090067 android:theme="@android:style/Theme.Material.Light"
Joey2a7477f2018-02-13 18:43:21 +020068 android:icon="@mipmap/ic_launcher"
Wink Savillee68857d2014-10-17 15:23:05 -070069 android:label="@string/app_name"
70 android:configChanges="orientation|locale|screenSize|keyboardHidden|mnc|mcc"
Jack Yu000681a2015-07-29 13:30:58 -070071 android:exported="false"
Wink Savillee68857d2014-10-17 15:23:05 -070072 android:taskAffinity="android.task.stk.StkLauncherActivity">
David Pursehoused3e68452013-09-06 16:46:57 +090073 <intent-filter>
74 <action android:name="android.intent.action.VIEW" />
Wink Savillee68857d2014-10-17 15:23:05 -070075 <action android:name="android.intent.action.PICK" />
David Pursehoused3e68452013-09-06 16:46:57 +090076 <category android:name="android.intent.category.DEFAULT" />
77 </intent-filter>
78 </activity>
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080079
Wink Savillee68857d2014-10-17 15:23:05 -070080 <activity android:name="StkInputActivity"
81 android:label="@string/app_name"
Joey2a7477f2018-02-13 18:43:21 +020082 android:icon="@mipmap/ic_launcher"
Sanket Padaweb10cfa32017-04-05 15:35:34 -070083 android:theme="@android:style/Theme.Material.Light"
Wink Savillee68857d2014-10-17 15:23:05 -070084 android:configChanges="orientation|locale|screenSize|keyboardHidden"
Jack Yu000681a2015-07-29 13:30:58 -070085 android:exported="false"
Wink Savillee68857d2014-10-17 15:23:05 -070086 android:taskAffinity="android.task.stk.StkLauncherActivity">
87 <intent-filter>
88 <action android:name="android.intent.action.VIEW" />
89 <action android:name="android.intent.action.EDIT" />
90 <category android:name="android.intent.category.DEFAULT" />
91 </intent-filter>
92 </activity>
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080093 <activity android:name="StkDialogActivity"
Wink Savillee68857d2014-10-17 15:23:05 -070094 android:configChanges="orientation|locale|screenSize|keyboardHidden"
Yoshiaki Naka4bed3602017-07-06 16:34:51 +090095 android:theme="@style/Transparent"
Jack Yu000681a2015-07-29 13:30:58 -070096 android:exported="false"
Wink Savillee68857d2014-10-17 15:23:05 -070097 android:taskAffinity="android.task.stk.StkLauncherActivity">
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080098 </activity>
99
100 <activity android:name="ToneDialog"
Jack Yu000681a2015-07-29 13:30:58 -0700101 android:exported="false"
Yoshiaki Naka4bed3602017-07-06 16:34:51 +0900102 android:theme="@style/Transparent"
Takanori Nakanodb80b302016-11-04 14:58:06 +0900103 android:taskAffinity="android.task.stk.StkLauncherActivity">
The Android Open Source Project9d9730a2009-03-03 19:32:37 -0800104 </activity>
105
David Pursehoused3e68452013-09-06 16:46:57 +0900106 <receiver android:name="com.android.stk.StkCmdReceiver">
The Android Open Source Project9d9730a2009-03-03 19:32:37 -0800107 <intent-filter>
Amit Mahajanccafe572017-04-06 09:29:50 -0700108 <action android:name= "com.android.internal.stk.command" />
109 <action android:name= "com.android.internal.stk.session_end" />
110 <action android:name= "com.android.internal.stk.icc_status_change" />
111 <action android:name= "com.android.internal.stk.alpha_notify" />
The Android Open Source Project9d9730a2009-03-03 19:32:37 -0800112 </intent-filter>
113 </receiver>
114
xinhe5b756582014-11-18 11:33:48 -0800115 <receiver android:name="com.android.stk.BootCompletedReceiver">
The Android Open Source Project9d9730a2009-03-03 19:32:37 -0800116 <intent-filter>
117 <action android:name="android.intent.action.BOOT_COMPLETED" />
xinhe1c3556b2014-12-08 11:26:34 -0800118 <action android:name="android.intent.action.USER_INITIALIZE" />
The Android Open Source Project9d9730a2009-03-03 19:32:37 -0800119 </intent-filter>
120 </receiver>
121
122 <service android:name="StkAppService" />
123
David Pursehoused3e68452013-09-06 16:46:57 +0900124 </application>
The Android Open Source Project9d9730a2009-03-03 19:32:37 -0800125</manifest>