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 <uses-permission android:name="android.permission.RECEIVE_STK_COMMANDS" /> 28 <uses-permission android:name="android.permission.SET_ACTIVITY_WATCHER" /> 29 <uses-permission android:name="android.permission.START_ACTIVITIES_FROM_BACKGROUND" /> 30 <uses-permission android:name="android.permission.USER_ACTIVITY" /> 31 <uses-permission android:name="android.permission.VIBRATE" /> 32 <uses-permission android:name="android.permission.WAKE_LOCK" /> 33 34 <application android:icon="@drawable/ic_launcher_sim_toolkit" 35 android:label="@string/app_name" 36 android:clearTaskOnLaunch="true" 37 android:process="com.android.phone" 38 android:taskAffinity="android.task.stk" 39 android:defaultToDeviceProtectedStorage="true" 40 android:directBootAware="true"> 41 42 <activity android:name="StkMain" 43 android:theme="@android:style/Theme.NoDisplay" 44 android:label="@string/app_name" 45 android:enabled="false" 46 android:exported="true" 47 android:taskAffinity="android.task.stk.StkLauncherActivity"> 48 <intent-filter> 49 <action android:name="android.intent.action.MAIN" /> 50 <category android:name="android.intent.category.LAUNCHER" /> 51 </intent-filter> 52 </activity> 53 54 <activity android:name="StkLauncherActivity" 55 android:theme="@android:style/Theme.Material.Light" 56 android:label="@string/app_name" 57 android:exported="false" 58 android:taskAffinity="android.task.stk.StkLauncherActivity"> 59 <intent-filter> 60 <action android:name="android.intent.action.VIEW" /> 61 <action android:name="android.intent.action.PICK" /> 62 <category android:name="android.intent.category.DEFAULT" /> 63 </intent-filter> 64 </activity> 65 66 <activity android:name="StkMenuActivity" 67 android:theme="@android:style/Theme.Material.Light" 68 android:icon="@drawable/ic_launcher_sim_toolkit" 69 android:label="@string/app_name" 70 android:configChanges="orientation|locale|screenSize|keyboardHidden|mnc|mcc" 71 android:exported="false" 72 android:taskAffinity="android.task.stk.StkLauncherActivity"> 73 <intent-filter> 74 <action android:name="android.intent.action.VIEW" /> 75 <action android:name="android.intent.action.PICK" /> 76 <category android:name="android.intent.category.DEFAULT" /> 77 </intent-filter> 78 </activity> 79 80 <activity android:name="StkInputActivity" 81 android:label="@string/app_name" 82 android:icon="@drawable/ic_launcher_sim_toolkit" 83 android:theme="@android:style/Theme.Material.Light" 84 android:configChanges="orientation|locale|screenSize|keyboardHidden" 85 android:exported="false" 86 android:taskAffinity="android.task.stk.StkLauncherActivity"> 87 <intent-filter> 88 <action android:name="android.intent.action.VIEW" /> 89 <action android:name="android.intent.action.EDIT" /> 90 <category android:name="android.intent.category.DEFAULT" /> 91 </intent-filter> 92 </activity> 93 <activity android:name="StkDialogActivity" 94 android:configChanges="orientation|locale|screenSize|keyboardHidden" 95 android:theme="@style/Transparent" 96 android:exported="false" 97 android:taskAffinity="android.task.stk.StkLauncherActivity"> 98 </activity> 99 100 <activity android:name="ToneDialog" 101 android:exported="false" 102 android:theme="@style/Transparent" 103 android:taskAffinity="android.task.stk.StkLauncherActivity"> 104 </activity> 105 106 <receiver android:name="com.android.stk.StkCmdReceiver"> 107 <intent-filter> 108 <action android:name= "com.android.internal.stk.command" /> 109 <action android:name= "com.android.internal.stk.session_end" /> 110 <action android:name= "com.android.internal.stk.icc_status_change" /> 111 <action android:name= "com.android.internal.stk.alpha_notify" /> 112 </intent-filter> 113 </receiver> 114 115 <receiver android:name="com.android.stk.BootCompletedReceiver"> 116 <intent-filter> 117 <action android:name="android.intent.action.BOOT_COMPLETED" /> 118 <action android:name="android.intent.action.USER_INITIALIZE" /> 119 </intent-filter> 120 </receiver> 121 122 <service android:name="StkAppService" /> 123 124 </application> 125</manifest> 126