summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2008-12-17 18:06:02 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2008-12-17 18:06:02 -0800
commitc46d8a06f810a3b5b570e43e7e0ed8b36efd23e5 (patch)
tree9fa47e0b9cb074cb447a1b4e3042ed94348a7c7b /AndroidManifest.xml
parente405ce157d5bfb44efa33a314ae08d543bc9d39e (diff)
downloadandroid_packages_apps_Stk-c46d8a06f810a3b5b570e43e7e0ed8b36efd23e5.tar.gz
android_packages_apps_Stk-c46d8a06f810a3b5b570e43e7e0ed8b36efd23e5.tar.bz2
android_packages_apps_Stk-c46d8a06f810a3b5b570e43e7e0ed8b36efd23e5.zip
Code drop from //branches/cupcake/...@124589
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml54
1 files changed, 43 insertions, 11 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 83f8ae7..b8472f5 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -19,24 +19,31 @@
package="com.android.stk"
android:sharedUserId="android.uid.phone">
+ <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
+
<application android:icon="@drawable/ic_launcher_sim_toolkit"
android:label="@string/app_name"
android:clearTaskOnLaunch="true"
android:process="com.android.phone">
- <activity android:name="StkActivity" android:label="@string/app_name"
+ <activity android:name="StkLauncherActivity"
+ android:label="@string/app_name"
android:enabled="false" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
- <intent-filter>
- <action android:name="android.intent.action.VIEW" />
- <action android:name="android.intent.action.PICK" />
- <category android:name="android.intent.category.DEFAULT" />
- </intent-filter>
</activity>
+ <activity android:name="StkMenuActivity"
+ android:launchMode="singleTop">
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+ <action android:name="android.intent.action.PICK" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
+
<activity android:name="StkInputActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
@@ -45,14 +52,39 @@
</intent-filter>
</activity>
+ <activity android:name="StkDialogActivity"
+ android:theme="@android:style/Theme.Dialog">
+ </activity>
+
+ <activity android:name="ToneDialog"
+ android:theme="@android:style/Theme.Dialog">
+ </activity>
+
<!-- SIM Toolkit settings activity -->
- <activity android:name="StkSettings" android:label="@string/app_name">
+ <activity android:name="StkSettings"
+ android:label="@string/app_name">
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+ <action android:name="android.intent.action.MAIN" />
+ <category
+ android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
+ </intent-filter>
+ </activity>
+
+ <receiver android:name="com.android.stk.StkCmdReceiver">
<intent-filter>
- <action android:name="android.intent.action.VIEW" />
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
+ <action android:name= "android.intent.action.stk.command" />
+ <action android:name= "android.intent.action.stk.session_end" />
</intent-filter>
- </activity>
+ </receiver>
+
+ <receiver android:name="com.android.stk.BootCompletedReceiver">
+ <intent-filter>
+ <action android:name="android.intent.action.BOOT_COMPLETED" />
+ </intent-filter>
+ </receiver>
+
+ <service android:name="StkAppService" />
</application>
</manifest>