blob: 994abdb29849861d78bc72fdfd140271b7024411 [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"
Wink Saville79085fc2009-06-09 10:27:23 -070020 package="com.android.stk"
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080021 android:sharedUserId="android.uid.phone">
22
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" />
26
27 <application android:icon="@drawable/ic_launcher_sim_toolkit"
28 android:label="@string/app_name"
29 android:clearTaskOnLaunch="true"
30 android:process="com.android.phone">
31
Wink Saville79085fc2009-06-09 10:27:23 -070032 <activity android:name="StkLauncherActivity"
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080033 android:label="@string/app_name"
34 android:enabled="false" >
35 <intent-filter>
36 <action android:name="android.intent.action.MAIN" />
37 <category android:name="android.intent.category.LAUNCHER" />
38 </intent-filter>
39 </activity>
40
Wink Saville79085fc2009-06-09 10:27:23 -070041 <activity android:name="StkMenuActivity"
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080042 android:launchMode="singleTop">
43 <intent-filter>
44 <action android:name="android.intent.action.VIEW" />
45 <action android:name="android.intent.action.PICK" />
46 <category android:name="android.intent.category.DEFAULT" />
47 </intent-filter>
48 </activity>
49
50 <activity android:name="StkInputActivity">
51 <intent-filter>
52 <action android:name="android.intent.action.VIEW" />
53 <action android:name="android.intent.action.EDIT" />
54 <category android:name="android.intent.category.DEFAULT" />
55 </intent-filter>
56 </activity>
57
58 <activity android:name="StkDialogActivity"
59 android:theme="@android:style/Theme.Dialog">
60 </activity>
61
62 <activity android:name="ToneDialog"
63 android:theme="@android:style/Theme.Dialog">
64 </activity>
65
66 <!-- SIM Toolkit settings activity -->
67 <activity android:name="StkSettings"
68 android:label="@string/app_name">
69 <intent-filter>
70 <action android:name="android.intent.action.VIEW" />
71 <action android:name="android.intent.action.MAIN" />
72 <category
73 android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
74 </intent-filter>
75 </activity>
Wink Saville79085fc2009-06-09 10:27:23 -070076
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080077 <receiver android:name="com.android.stk.StkCmdReceiver">
78 <intent-filter>
79 <action android:name= "android.intent.action.stk.command" />
80 <action android:name= "android.intent.action.stk.session_end" />
81 </intent-filter>
82 </receiver>
83
Dianne Hackbornac72bff2012-09-28 15:42:06 -070084 <receiver android:name="com.android.stk.BootCompletedReceiver"
85 androidprv:primaryUserOnly="true">
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080086 <intent-filter>
87 <action android:name="android.intent.action.BOOT_COMPLETED" />
88 </intent-filter>
89 </receiver>
90
91 <service android:name="StkAppService" />
92
93 </application>
94</manifest>