blob: 29928eb6063a2a16ceccc246885e60400b8fa6ec [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
fionaxu2f520022016-07-27 10:23:01 -070025 <protected-broadcast android:name="com.android.stk.DIALOG_ALARM_TIMEOUT" />
26
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080027 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Preeti Ahuja95919342013-10-01 18:18:55 -070028 <uses-permission android:name="android.permission.GET_TASKS"/>
Amit Mahajan0c707652015-06-11 10:51:05 -070029 <uses-permission android:name="android.permission.RECEIVE_STK_COMMANDS" />
Yoshiaki Naka62bfb0d2017-10-07 16:42:08 +090030 <uses-permission android:name="android.permission.SET_ACTIVITY_WATCHER" />
Yoshiaki Nakafb997252017-09-19 20:14:58 +090031 <uses-permission android:name="android.permission.USER_ACTIVITY" />
Yuta Uife965802017-11-07 20:12:37 +090032 <uses-permission android:name="android.permission.VIBRATE" />
33 <uses-permission android:name="android.permission.WAKE_LOCK" />
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080034
David Pursehoused3e68452013-09-06 16:46:57 +090035 <application android:icon="@drawable/ic_launcher_sim_toolkit"
36 android:label="@string/app_name"
37 android:clearTaskOnLaunch="true"
Wink Savillee68857d2014-10-17 15:23:05 -070038 android:process="com.android.phone"
Sanket Padawe35737b02016-09-09 10:16:55 -070039 android:taskAffinity="android.task.stk"
40 android:defaultToDeviceProtectedStorage="true"
41 android:directBootAware="true">
Legler Wuaeefef52014-10-27 00:57:18 +080042
43 <activity android:name="StkMain"
44 android:theme="@android:style/Theme.NoDisplay"
45 android:label="@string/app_name"
Legler Wuc32560e2015-01-17 00:24:13 +080046 android:enabled="false"
Jack Yu556820e2015-08-31 14:55:51 -070047 android:exported="true"
Legler Wuaeefef52014-10-27 00:57:18 +080048 android:taskAffinity="android.task.stk.StkLauncherActivity">
David Pursehoused3e68452013-09-06 16:46:57 +090049 <intent-filter>
50 <action android:name="android.intent.action.MAIN" />
51 <category android:name="android.intent.category.LAUNCHER" />
52 </intent-filter>
53 </activity>
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080054
Legler Wuaeefef52014-10-27 00:57:18 +080055 <activity android:name="StkLauncherActivity"
Takanori Nakano48544352016-12-02 18:32:59 +090056 android:theme="@android:style/Theme.Material.Light"
Legler Wuaeefef52014-10-27 00:57:18 +080057 android:label="@string/app_name"
Jack Yu000681a2015-07-29 13:30:58 -070058 android:exported="false"
Legler Wuaeefef52014-10-27 00:57:18 +080059 android:taskAffinity="android.task.stk.StkLauncherActivity">
60 <intent-filter>
61 <action android:name="android.intent.action.VIEW" />
62 <action android:name="android.intent.action.PICK" />
63 <category android:name="android.intent.category.DEFAULT" />
64 </intent-filter>
65 </activity>
66
David Pursehoused3e68452013-09-06 16:46:57 +090067 <activity android:name="StkMenuActivity"
Takanori Nakano48544352016-12-02 18:32:59 +090068 android:theme="@android:style/Theme.Material.Light"
Wink Savillee68857d2014-10-17 15:23:05 -070069 android:icon="@drawable/ic_launcher_sim_toolkit"
70 android:label="@string/app_name"
71 android:configChanges="orientation|locale|screenSize|keyboardHidden|mnc|mcc"
Jack Yu000681a2015-07-29 13:30:58 -070072 android:exported="false"
Wink Savillee68857d2014-10-17 15:23:05 -070073 android:taskAffinity="android.task.stk.StkLauncherActivity">
David Pursehoused3e68452013-09-06 16:46:57 +090074 <intent-filter>
75 <action android:name="android.intent.action.VIEW" />
Wink Savillee68857d2014-10-17 15:23:05 -070076 <action android:name="android.intent.action.PICK" />
David Pursehoused3e68452013-09-06 16:46:57 +090077 <category android:name="android.intent.category.DEFAULT" />
78 </intent-filter>
79 </activity>
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080080
Wink Savillee68857d2014-10-17 15:23:05 -070081 <activity android:name="StkInputActivity"
82 android:label="@string/app_name"
83 android:icon="@drawable/ic_launcher_sim_toolkit"
Sanket Padaweb10cfa32017-04-05 15:35:34 -070084 android:theme="@android:style/Theme.Material.Light"
Wink Savillee68857d2014-10-17 15:23:05 -070085 android:configChanges="orientation|locale|screenSize|keyboardHidden"
Jack Yu000681a2015-07-29 13:30:58 -070086 android:exported="false"
Wink Savillee68857d2014-10-17 15:23:05 -070087 android:taskAffinity="android.task.stk.StkLauncherActivity">
88 <intent-filter>
89 <action android:name="android.intent.action.VIEW" />
90 <action android:name="android.intent.action.EDIT" />
91 <category android:name="android.intent.category.DEFAULT" />
92 </intent-filter>
93 </activity>
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080094 <activity android:name="StkDialogActivity"
Wink Savillee68857d2014-10-17 15:23:05 -070095 android:configChanges="orientation|locale|screenSize|keyboardHidden"
Yoshiaki Naka4bed3602017-07-06 16:34:51 +090096 android:theme="@style/Transparent"
Jack Yu000681a2015-07-29 13:30:58 -070097 android:exported="false"
Wink Savillee68857d2014-10-17 15:23:05 -070098 android:taskAffinity="android.task.stk.StkLauncherActivity">
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080099 </activity>
100
101 <activity android:name="ToneDialog"
Jack Yu000681a2015-07-29 13:30:58 -0700102 android:exported="false"
Yoshiaki Naka4bed3602017-07-06 16:34:51 +0900103 android:theme="@style/Transparent"
Takanori Nakanodb80b302016-11-04 14:58:06 +0900104 android:taskAffinity="android.task.stk.StkLauncherActivity">
The Android Open Source Project9d9730a2009-03-03 19:32:37 -0800105 </activity>
106
David Pursehoused3e68452013-09-06 16:46:57 +0900107 <receiver android:name="com.android.stk.StkCmdReceiver">
The Android Open Source Project9d9730a2009-03-03 19:32:37 -0800108 <intent-filter>
Amit Mahajanccafe572017-04-06 09:29:50 -0700109 <action android:name= "com.android.internal.stk.command" />
110 <action android:name= "com.android.internal.stk.session_end" />
111 <action android:name= "com.android.internal.stk.icc_status_change" />
112 <action android:name= "com.android.internal.stk.alpha_notify" />
Preeti Ahuja95919342013-10-01 18:18:55 -0700113 <action android:name= "android.intent.action.LOCALE_CHANGED" />
The Android Open Source Project9d9730a2009-03-03 19:32:37 -0800114 </intent-filter>
115 </receiver>
116
xinhe5b756582014-11-18 11:33:48 -0800117 <receiver android:name="com.android.stk.BootCompletedReceiver">
The Android Open Source Project9d9730a2009-03-03 19:32:37 -0800118 <intent-filter>
119 <action android:name="android.intent.action.BOOT_COMPLETED" />
xinhe1c3556b2014-12-08 11:26:34 -0800120 <action android:name="android.intent.action.USER_INITIALIZE" />
The Android Open Source Project9d9730a2009-03-03 19:32:37 -0800121 </intent-filter>
122 </receiver>
123
124 <service android:name="StkAppService" />
125
David Pursehoused3e68452013-09-06 16:46:57 +0900126 </application>
The Android Open Source Project9d9730a2009-03-03 19:32:37 -0800127</manifest>