Chia-chi Yeh | 19f054b | 2011-06-03 17:06:29 -0700 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Chia-chi Yeh | 5db03df | 2011-06-30 23:52:29 -0700 | [diff] [blame] | 2 | package="com.android.vpndialogs" |
| 3 | android:sharedUserId="android.uid.system"> |
Chia-chi Yeh | 19f054b | 2011-06-03 17:06:29 -0700 | [diff] [blame] | 4 | |
Christopher Tate | 2efd2db | 2011-07-19 16:32:49 -0700 | [diff] [blame] | 5 | <application android:label="VpnDialogs" |
| 6 | android:allowBackup="false" > |
Chia-chi Yeh | 19f054b | 2011-06-03 17:06:29 -0700 | [diff] [blame] | 7 | <activity android:name=".ConfirmDialog" |
Chia-chi Yeh | 19f054b | 2011-06-03 17:06:29 -0700 | [diff] [blame] | 8 | android:theme="@style/transparent"> |
| 9 | <intent-filter> |
| 10 | <action android:name="android.intent.action.MAIN"/> |
| 11 | <category android:name="android.intent.category.DEFAULT"/> |
| 12 | </intent-filter> |
| 13 | </activity> |
| 14 | |
| 15 | <activity android:name=".ManageDialog" |
| 16 | android:theme="@style/transparent" |
| 17 | android:noHistory="true"> |
| 18 | <intent-filter> |
| 19 | <action android:name="android.intent.action.MAIN"/> |
| 20 | <category android:name="android.intent.category.DEFAULT"/> |
| 21 | </intent-filter> |
| 22 | </activity> |
| 23 | </application> |
| 24 | </manifest> |