blob: 1cb476d1631d422c382a1e2cca13c8881158c79f [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" />
26
David Pursehoused3e68452013-09-06 16:46:57 +090027 <application android:icon="@drawable/ic_launcher_sim_toolkit"
28 android:label="@string/app_name"
29 android:clearTaskOnLaunch="true"
30 android:process="com.android.phone">
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080031
David Pursehoused3e68452013-09-06 16:46:57 +090032 <activity android:name="StkLauncherActivity"
33 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>
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080040
David Pursehoused3e68452013-09-06 16:46:57 +090041 <activity android:name="StkMenuActivity"
42 android:configChanges="orientation|screenSize|keyboardHidden|mnc|mcc"
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080043 android:launchMode="singleTop">
David Pursehoused3e68452013-09-06 16:46:57 +090044 <intent-filter>
45 <action android:name="android.intent.action.VIEW" />
46 <action android:name="android.intent.action.PICK" />
47 <category android:name="android.intent.category.DEFAULT" />
48 </intent-filter>
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080049 </activity>
50
duho.roee36b6f2013-09-03 15:15:16 +090051 <activity android:name="StkInputActivity"
Sanny Shang886fc322011-12-30 15:37:42 +080052 android:configChanges="orientation|screenSize|keyboardHidden">
David Pursehoused3e68452013-09-06 16:46:57 +090053 <intent-filter>
54 <action android:name="android.intent.action.VIEW" />
55 <action android:name="android.intent.action.EDIT" />
56 <category android:name="android.intent.category.DEFAULT" />
57 </intent-filter>
58 </activity>
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080059
60 <activity android:name="StkDialogActivity"
duho.roee36b6f2013-09-03 15:15:16 +090061 android:theme="@android:style/Theme.Dialog"
Sanny Shang886fc322011-12-30 15:37:42 +080062 android:configChanges="orientation|screenSize|keyboardHidden">
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080063 </activity>
64
65 <activity android:name="ToneDialog"
66 android:theme="@android:style/Theme.Dialog">
67 </activity>
68
David Pursehoused3e68452013-09-06 16:46:57 +090069 <!-- SIM Toolkit settings activity -->
70 <activity android:name="StkSettings"
71 android:label="@string/app_name">
72 <intent-filter>
73 <action android:name="android.intent.action.VIEW" />
74 <action android:name="android.intent.action.MAIN" />
75 <category
76 android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
77 </intent-filter>
78 </activity>
Wink Saville79085fc2009-06-09 10:27:23 -070079
David Pursehoused3e68452013-09-06 16:46:57 +090080 <receiver android:name="com.android.stk.StkCmdReceiver">
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080081 <intent-filter>
82 <action android:name= "android.intent.action.stk.command" />
83 <action android:name= "android.intent.action.stk.session_end" />
84 </intent-filter>
85 </receiver>
86
Dianne Hackbornac72bff2012-09-28 15:42:06 -070087 <receiver android:name="com.android.stk.BootCompletedReceiver"
David Pursehoused3e68452013-09-06 16:46:57 +090088 androidprv:primaryUserOnly="true">
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080089 <intent-filter>
90 <action android:name="android.intent.action.BOOT_COMPLETED" />
91 </intent-filter>
92 </receiver>
93
94 <service android:name="StkAppService" />
95
David Pursehoused3e68452013-09-06 16:46:57 +090096 </application>
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080097</manifest>