blob: 348e7981fd0bb3c4bd4fcf1e6be890fba9fbe183 [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"
Amit Mahajandb465b92020-02-05 01:37:24 +000019 xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
20 package="com.android.stk"
21 android:sharedUserId="android.uid.phone">
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080022
Amit Mahajandb465b92020-02-05 01:37:24 +000023 <original-package android:name="com.android.stk" />
24
25 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Amit Mahajan9a5cf012020-07-01 21:35:43 +000026 <uses-permission android:name="android.permission.REAL_GET_TASKS"/>
Amit Mahajandb465b92020-02-05 01:37:24 +000027 <uses-permission android:name="android.permission.RECEIVE_STK_COMMANDS" />
28 <uses-permission android:name="android.permission.SET_ACTIVITY_WATCHER" />
Hall Liu9d5d5ee2020-10-06 14:15:40 -070029 <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
Amit Mahajandb465b92020-02-05 01:37:24 +000030 <uses-permission android:name="android.permission.START_ACTIVITIES_FROM_BACKGROUND" />
31 <uses-permission android:name="android.permission.USER_ACTIVITY" />
32 <uses-permission android:name="android.permission.VIBRATE" />
33 <uses-permission android:name="android.permission.WAKE_LOCK" />
Steve Elliott4efb55f2021-12-03 16:35:25 -050034 <uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
arunvodduaa8d8c32022-06-27 16:26:07 +000035 <uses-permission android:name="android.permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS"/>
Amit Mahajandb465b92020-02-05 01:37:24 +000036
37 <application android:icon="@drawable/ic_launcher_sim_toolkit"
38 android:label="@string/app_name"
39 android:clearTaskOnLaunch="true"
40 android:process="com.android.phone"
41 android:taskAffinity="android.task.stk"
42 android:defaultToDeviceProtectedStorage="true"
43 android:directBootAware="true">
44
45 <activity android:name="StkMain"
46 android:theme="@android:style/Theme.NoDisplay"
47 android:label="@string/app_name"
48 android:enabled="false"
49 android:exported="true"
50 android:autoRemoveFromRecents="true"
51 android:taskAffinity="android.task.stk.StkLauncherActivity">
52 <intent-filter>
53 <action android:name="android.intent.action.MAIN" />
54 <category android:name="android.intent.category.LAUNCHER" />
55 </intent-filter>
56 </activity>
57
58 <activity android:name="StkLauncherActivity"
59 android:theme="@android:style/Theme.DeviceDefault.DayNight"
60 android:label="@string/app_name"
61 android:exported="false"
62 android:autoRemoveFromRecents="true"
63 android:taskAffinity="android.task.stk.StkLauncherActivity">
64 <intent-filter>
65 <action android:name="android.intent.action.VIEW" />
66 <action android:name="android.intent.action.PICK" />
67 <category android:name="android.intent.category.DEFAULT" />
68 </intent-filter>
69 </activity>
70
71 <activity android:name="StkMenuActivity"
72 android:theme="@android:style/Theme.DeviceDefault.DayNight"
73 android:icon="@drawable/ic_launcher_sim_toolkit"
74 android:label="@string/app_name"
75 android:configChanges="orientation|locale|screenSize|keyboardHidden|mnc|mcc"
76 android:exported="false"
77 android:autoRemoveFromRecents="true"
78 android:taskAffinity="android.task.stk.StkLauncherActivity">
79 <intent-filter>
80 <action android:name="android.intent.action.VIEW" />
81 <action android:name="android.intent.action.PICK" />
82 <category android:name="android.intent.category.DEFAULT" />
83 </intent-filter>
84 </activity>
85
86 <activity android:name="StkInputActivity"
87 android:label="@string/app_name"
88 android:icon="@drawable/ic_launcher_sim_toolkit"
89 android:theme="@style/Theme.AppCompat.DayNight.NoActionBar"
90 android:configChanges="orientation|locale|screenSize|keyboardHidden"
91 android:exported="false"
92 android:autoRemoveFromRecents="true"
93 android:taskAffinity="android.task.stk.StkLauncherActivity">
94 <intent-filter>
95 <action android:name="android.intent.action.VIEW" />
96 <action android:name="android.intent.action.EDIT" />
97 <category android:name="android.intent.category.DEFAULT" />
98 </intent-filter>
99 </activity>
100 <activity android:name="StkDialogActivity"
101 android:configChanges="orientation|locale|screenSize|keyboardHidden"
102 android:theme="@style/Transparent"
103 android:exported="false"
104 android:autoRemoveFromRecents="true"
105 android:taskAffinity="android.task.stk.StkLauncherActivity">
106 </activity>
107
108 <activity android:name="ToneDialog"
109 android:exported="false"
110 android:theme="@style/Transparent"
111 android:autoRemoveFromRecents="true"
112 android:taskAffinity="android.task.stk.StkLauncherActivity">
113 </activity>
114
Ashwini Orugantibb2b1c62020-05-19 17:39:57 -0700115 <receiver android:name="com.android.stk.StkCmdReceiver"
116 android:exported="true">
Amit Mahajandb465b92020-02-05 01:37:24 +0000117 <intent-filter>
118 <action android:name= "com.android.internal.stk.command" />
119 <action android:name= "com.android.internal.stk.session_end" />
120 <action android:name= "com.android.internal.stk.icc_status_change" />
121 <action android:name= "com.android.internal.stk.alpha_notify" />
122 </intent-filter>
123 </receiver>
124
Ashwini Orugantibb2b1c62020-05-19 17:39:57 -0700125 <receiver android:name="com.android.stk.BootCompletedReceiver"
126 android:exported="true">
Amit Mahajandb465b92020-02-05 01:37:24 +0000127 <intent-filter>
128 <action android:name="android.intent.action.BOOT_COMPLETED" />
129 <action android:name="android.intent.action.USER_INITIALIZE" />
130 </intent-filter>
131 </receiver>
132
133 <service android:name="StkAppService" />
134
David Pursehoused3e68452013-09-06 16:46:57 +0900135 </application>
The Android Open Source Project9d9730a2009-03-03 19:32:37 -0800136</manifest>