blob: bf9604cea58cc7714c104ff1abb54ccc18806c17 [file] [log] [blame]
Amit Mahajanf17bb572019-12-03 00:57:16 -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
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 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
17
18<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19 xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
20 package="com.android.stk"
21 android:sharedUserId="android.uid.phone">
22
23 <original-package android:name="com.android.stk" />
24
25 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
26 <uses-permission android:name="android.permission.GET_TASKS"/>
27 <uses-permission android:name="android.permission.RECEIVE_STK_COMMANDS" />
28 <uses-permission android:name="android.permission.SET_ACTIVITY_WATCHER" />
29 <uses-permission android:name="android.permission.START_ACTIVITIES_FROM_BACKGROUND" />
30 <uses-permission android:name="android.permission.USER_ACTIVITY" />
31 <uses-permission android:name="android.permission.VIBRATE" />
32 <uses-permission android:name="android.permission.WAKE_LOCK" />
33
34 <application android:icon="@drawable/ic_launcher_sim_toolkit"
35 android:label="@string/app_name"
36 android:clearTaskOnLaunch="true"
37 android:process="com.android.phone"
38 android:taskAffinity="android.task.stk"
39 android:defaultToDeviceProtectedStorage="true"
40 android:directBootAware="true">
41
42 <uses-library android:name="com.android.stk.lib" />
43
44 <activity android:name="StkMain"
45 android:theme="@android:style/Theme.NoDisplay"
46 android:label="@string/app_name"
47 android:enabled="false"
48 android:exported="true"
49 android:autoRemoveFromRecents="true"
50 android:taskAffinity="android.task.stk.StkLauncherActivity">
51 <intent-filter>
52 <action android:name="android.intent.action.MAIN" />
53 <category android:name="android.intent.category.LAUNCHER" />
54 </intent-filter>
55 </activity>
56
57 <activity android:name="StkLauncherActivity"
58 android:theme="@android:style/Theme.DeviceDefault.DayNight"
59 android:label="@string/app_name"
60 android:exported="false"
61 android:autoRemoveFromRecents="true"
62 android:taskAffinity="android.task.stk.StkLauncherActivity">
63 <intent-filter>
64 <action android:name="android.intent.action.VIEW" />
65 <action android:name="android.intent.action.PICK" />
66 <category android:name="android.intent.category.DEFAULT" />
67 </intent-filter>
68 </activity>
69
70 <activity android:name="StkMenuActivity"
71 android:theme="@android:style/Theme.DeviceDefault.DayNight"
72 android:icon="@drawable/ic_launcher_sim_toolkit"
73 android:label="@string/app_name"
74 android:configChanges="orientation|locale|screenSize|keyboardHidden|mnc|mcc"
75 android:exported="false"
76 android:autoRemoveFromRecents="true"
77 android:taskAffinity="android.task.stk.StkLauncherActivity">
78 <intent-filter>
79 <action android:name="android.intent.action.VIEW" />
80 <action android:name="android.intent.action.PICK" />
81 <category android:name="android.intent.category.DEFAULT" />
82 </intent-filter>
83 </activity>
84
85 <activity android:name="StkInputActivity"
86 android:label="@string/app_name"
87 android:icon="@drawable/ic_launcher_sim_toolkit"
88 android:theme="@style/Theme.AppCompat.DayNight.NoActionBar"
89 android:configChanges="orientation|locale|screenSize|keyboardHidden"
90 android:exported="false"
91 android:autoRemoveFromRecents="true"
92 android:taskAffinity="android.task.stk.StkLauncherActivity">
93 <intent-filter>
94 <action android:name="android.intent.action.VIEW" />
95 <action android:name="android.intent.action.EDIT" />
96 <category android:name="android.intent.category.DEFAULT" />
97 </intent-filter>
98 </activity>
99 <activity android:name="StkDialogActivity"
100 android:configChanges="orientation|locale|screenSize|keyboardHidden"
101 android:theme="@style/Transparent"
102 android:exported="false"
103 android:autoRemoveFromRecents="true"
104 android:taskAffinity="android.task.stk.StkLauncherActivity">
105 </activity>
106
107 <activity android:name="ToneDialog"
108 android:exported="false"
109 android:theme="@style/Transparent"
110 android:autoRemoveFromRecents="true"
111 android:taskAffinity="android.task.stk.StkLauncherActivity">
112 </activity>
113
114 <receiver android:name="com.android.stk.StkCmdReceiver">
115 <intent-filter>
116 <action android:name= "com.android.internal.stk.command" />
117 <action android:name= "com.android.internal.stk.session_end" />
118 <action android:name= "com.android.internal.stk.icc_status_change" />
119 <action android:name= "com.android.internal.stk.alpha_notify" />
120 </intent-filter>
121 </receiver>
122
123 <receiver android:name="com.android.stk.BootCompletedReceiver">
124 <intent-filter>
125 <action android:name="android.intent.action.BOOT_COMPLETED" />
126 <action android:name="android.intent.action.USER_INITIALIZE" />
127 </intent-filter>
128 </receiver>
129
130 <service android:name="StkAppService" />
131
132 </application>
133</manifest>