blob: a54826e9bd6ae976bf041b74de3803fde6a7b4eb [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"
Wink Saville79085fc2009-06-09 10:27:23 -070019 package="com.android.stk"
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080020 android:sharedUserId="android.uid.phone">
21
Jeff Hamilton75c5c6e2010-02-11 16:25:53 -060022 <original-package android:name="com.android.stk" />
23
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080024 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
25
26 <application android:icon="@drawable/ic_launcher_sim_toolkit"
27 android:label="@string/app_name"
28 android:clearTaskOnLaunch="true"
29 android:process="com.android.phone">
30
Wink Saville79085fc2009-06-09 10:27:23 -070031 <activity android:name="StkLauncherActivity"
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080032 android:label="@string/app_name"
33 android:enabled="false" >
34 <intent-filter>
35 <action android:name="android.intent.action.MAIN" />
36 <category android:name="android.intent.category.LAUNCHER" />
37 </intent-filter>
38 </activity>
39
Wink Saville79085fc2009-06-09 10:27:23 -070040 <activity android:name="StkMenuActivity"
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080041 android:launchMode="singleTop">
42 <intent-filter>
43 <action android:name="android.intent.action.VIEW" />
44 <action android:name="android.intent.action.PICK" />
45 <category android:name="android.intent.category.DEFAULT" />
46 </intent-filter>
47 </activity>
48
49 <activity android:name="StkInputActivity">
50 <intent-filter>
51 <action android:name="android.intent.action.VIEW" />
52 <action android:name="android.intent.action.EDIT" />
53 <category android:name="android.intent.category.DEFAULT" />
54 </intent-filter>
55 </activity>
56
57 <activity android:name="StkDialogActivity"
58 android:theme="@android:style/Theme.Dialog">
59 </activity>
60
61 <activity android:name="ToneDialog"
62 android:theme="@android:style/Theme.Dialog">
63 </activity>
64
65 <!-- SIM Toolkit settings activity -->
66 <activity android:name="StkSettings"
67 android:label="@string/app_name">
68 <intent-filter>
69 <action android:name="android.intent.action.VIEW" />
70 <action android:name="android.intent.action.MAIN" />
71 <category
72 android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
73 </intent-filter>
74 </activity>
Wink Saville79085fc2009-06-09 10:27:23 -070075
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080076 <receiver android:name="com.android.stk.StkCmdReceiver">
77 <intent-filter>
78 <action android:name= "android.intent.action.stk.command" />
79 <action android:name= "android.intent.action.stk.session_end" />
80 </intent-filter>
81 </receiver>
82
83 <receiver android:name="com.android.stk.BootCompletedReceiver">
84 <intent-filter>
85 <action android:name="android.intent.action.BOOT_COMPLETED" />
86 </intent-filter>
87 </receiver>
88
89 <service android:name="StkAppService" />
90
91 </application>
92</manifest>