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