blob: 668a99e230d3706918a2de5603acab6a088a9e12 [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" />
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080028
David Pursehoused3e68452013-09-06 16:46:57 +090029 <application android:icon="@drawable/ic_launcher_sim_toolkit"
30 android:label="@string/app_name"
31 android:clearTaskOnLaunch="true"
Wink Savillee68857d2014-10-17 15:23:05 -070032 android:process="com.android.phone"
33 android:taskAffinity="android.task.stk">
Legler Wuaeefef52014-10-27 00:57:18 +080034
35 <activity android:name="StkMain"
36 android:theme="@android:style/Theme.NoDisplay"
37 android:label="@string/app_name"
Legler Wuc32560e2015-01-17 00:24:13 +080038 android:enabled="false"
Legler Wuaeefef52014-10-27 00:57:18 +080039 android:taskAffinity="android.task.stk.StkLauncherActivity">
David Pursehoused3e68452013-09-06 16:46:57 +090040 <intent-filter>
41 <action android:name="android.intent.action.MAIN" />
42 <category android:name="android.intent.category.LAUNCHER" />
43 </intent-filter>
44 </activity>
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080045
Legler Wuaeefef52014-10-27 00:57:18 +080046 <activity android:name="StkLauncherActivity"
47 android:theme="@android:style/Theme.NoTitleBar"
48 android:label="@string/app_name"
49 android:taskAffinity="android.task.stk.StkLauncherActivity">
50 <intent-filter>
51 <action android:name="android.intent.action.VIEW" />
52 <action android:name="android.intent.action.PICK" />
53 <category android:name="android.intent.category.DEFAULT" />
54 </intent-filter>
55 </activity>
56
David Pursehoused3e68452013-09-06 16:46:57 +090057 <activity android:name="StkMenuActivity"
Wink Savillee68857d2014-10-17 15:23:05 -070058 android:theme="@android:style/Theme.NoTitleBar"
59 android:icon="@drawable/ic_launcher_sim_toolkit"
60 android:label="@string/app_name"
61 android:configChanges="orientation|locale|screenSize|keyboardHidden|mnc|mcc"
62 android:taskAffinity="android.task.stk.StkLauncherActivity">
David Pursehoused3e68452013-09-06 16:46:57 +090063 <intent-filter>
64 <action android:name="android.intent.action.VIEW" />
Wink Savillee68857d2014-10-17 15:23:05 -070065 <action android:name="android.intent.action.PICK" />
David Pursehoused3e68452013-09-06 16:46:57 +090066 <category android:name="android.intent.category.DEFAULT" />
67 </intent-filter>
68 </activity>
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080069
Wink Savillee68857d2014-10-17 15:23:05 -070070 <activity android:name="StkInputActivity"
71 android:label="@string/app_name"
72 android:icon="@drawable/ic_launcher_sim_toolkit"
73 android:theme="@android:style/Theme.Holo"
74 android:configChanges="orientation|locale|screenSize|keyboardHidden"
75 android:taskAffinity="android.task.stk.StkLauncherActivity">
76 <intent-filter>
77 <action android:name="android.intent.action.VIEW" />
78 <action android:name="android.intent.action.EDIT" />
79 <category android:name="android.intent.category.DEFAULT" />
80 </intent-filter>
81 </activity>
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080082 <activity android:name="StkDialogActivity"
Wink Savillee68857d2014-10-17 15:23:05 -070083 android:configChanges="orientation|locale|screenSize|keyboardHidden"
duho.roee36b6f2013-09-03 15:15:16 +090084 android:theme="@android:style/Theme.Dialog"
Wink Savillee68857d2014-10-17 15:23:05 -070085 android:taskAffinity="android.task.stk.StkLauncherActivity">
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080086 </activity>
87
88 <activity android:name="ToneDialog"
89 android:theme="@android:style/Theme.Dialog">
90 </activity>
91
David Pursehoused3e68452013-09-06 16:46:57 +090092 <!-- SIM Toolkit settings activity -->
93 <activity android:name="StkSettings"
94 android:label="@string/app_name">
95 <intent-filter>
96 <action android:name="android.intent.action.VIEW" />
97 <action android:name="android.intent.action.MAIN" />
98 <category
99 android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
100 </intent-filter>
101 </activity>
Wink Saville79085fc2009-06-09 10:27:23 -0700102
David Pursehoused3e68452013-09-06 16:46:57 +0900103 <receiver android:name="com.android.stk.StkCmdReceiver">
The Android Open Source Project9d9730a2009-03-03 19:32:37 -0800104 <intent-filter>
105 <action android:name= "android.intent.action.stk.command" />
106 <action android:name= "android.intent.action.stk.session_end" />
duho.ro6ae29d82014-09-19 07:56:43 +0900107 <action android:name= "android.intent.action.stk.icc_status_change" />
Preeti Ahuja0f4cf2f2012-08-09 11:45:08 +0530108 <action android:name= "android.intent.action.stk.alpha_notify" />
Preeti Ahuja95919342013-10-01 18:18:55 -0700109 <action android:name= "android.intent.action.LOCALE_CHANGED" />
The Android Open Source Project9d9730a2009-03-03 19:32:37 -0800110 </intent-filter>
111 </receiver>
112
xinhe5b756582014-11-18 11:33:48 -0800113 <receiver android:name="com.android.stk.BootCompletedReceiver">
The Android Open Source Project9d9730a2009-03-03 19:32:37 -0800114 <intent-filter>
115 <action android:name="android.intent.action.BOOT_COMPLETED" />
xinhe1c3556b2014-12-08 11:26:34 -0800116 <action android:name="android.intent.action.USER_INITIALIZE" />
The Android Open Source Project9d9730a2009-03-03 19:32:37 -0800117 </intent-filter>
118 </receiver>
119
120 <service android:name="StkAppService" />
121
David Pursehoused3e68452013-09-06 16:46:57 +0900122 </application>
The Android Open Source Project9d9730a2009-03-03 19:32:37 -0800123</manifest>