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