AndroidManifest.xml revision b3d0e61b1666e77c6254c9f2e27771369ab3f8b1
1<?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
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     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
17
18<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19        xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
20        package="com.android.stk"
21        android:sharedUserId="android.uid.phone">
22
23    <original-package android:name="com.android.stk" />
24
25    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
26    <uses-permission android:name="android.permission.GET_TASKS"/>
27
28    <application android:icon="@drawable/ic_launcher_sim_toolkit"
29        android:label="@string/app_name"
30        android:clearTaskOnLaunch="true"
31        android:process="com.android.phone"
32        android:taskAffinity="android.task.stk">
33        <activity android:name="StkLauncherActivity"
34            android:theme="@android:style/Theme.NoTitleBar"
35            android:label="@string/app_name">
36            <intent-filter>
37                <action android:name="android.intent.action.MAIN" />
38                <category android:name="android.intent.category.LAUNCHER" />
39            </intent-filter>
40        </activity>
41
42        <activity android:name="StkMenuActivity"
43            android:theme="@android:style/Theme.NoTitleBar"
44            android:icon="@drawable/ic_launcher_sim_toolkit"
45            android:label="@string/app_name"
46            android:configChanges="orientation|locale|screenSize|keyboardHidden|mnc|mcc"
47            android:taskAffinity="android.task.stk.StkLauncherActivity">
48            <intent-filter>
49                <action android:name="android.intent.action.VIEW" />
50                <action android:name="android.intent.action.PICK" />
51                <category android:name="android.intent.category.DEFAULT" />
52            </intent-filter>
53        </activity>
54
55        <activity android:name="StkInputActivity"
56            android:label="@string/app_name"
57            android:icon="@drawable/ic_launcher_sim_toolkit"
58            android:theme="@android:style/Theme.Holo"
59            android:configChanges="orientation|locale|screenSize|keyboardHidden"
60            android:taskAffinity="android.task.stk.StkLauncherActivity">
61                <intent-filter>
62                        <action android:name="android.intent.action.VIEW" />
63                        <action android:name="android.intent.action.EDIT" />
64                        <category android:name="android.intent.category.DEFAULT" />
65                </intent-filter>
66        </activity>
67        <activity android:name="StkDialogActivity"
68            android:configChanges="orientation|locale|screenSize|keyboardHidden"
69            android:theme="@android:style/Theme.Dialog"
70            android:taskAffinity="android.task.stk.StkLauncherActivity">
71        </activity>
72
73        <activity android:name="ToneDialog"
74            android:theme="@android:style/Theme.Dialog">
75        </activity>
76
77        <!-- SIM Toolkit settings activity -->
78        <activity android:name="StkSettings"
79            android:label="@string/app_name">
80            <intent-filter>
81                <action android:name="android.intent.action.VIEW" />
82                <action android:name="android.intent.action.MAIN" />
83                <category
84                    android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
85            </intent-filter>
86        </activity>
87
88        <receiver android:name="com.android.stk.StkCmdReceiver">
89            <intent-filter>
90                <action android:name= "android.intent.action.stk.command" />
91                <action android:name= "android.intent.action.stk.session_end" />
92                <action android:name= "android.intent.action.stk.icc_status_change" />
93                <action android:name= "android.intent.action.stk.alpha_notify" />
94                <action android:name= "android.intent.action.LOCALE_CHANGED" />
95            </intent-filter>
96        </receiver>
97
98        <receiver android:name="com.android.stk.BootCompletedReceiver">
99            <intent-filter>
100                <action android:name="android.intent.action.BOOT_COMPLETED" />
101            </intent-filter>
102        </receiver>
103
104        <service android:name="StkAppService" />
105
106    </application>
107</manifest>
108