blob: ef640d5fcedba92c3d0594104aa1b362540e7784 [file] [log] [blame]
Chia-chi Yeh19f054b2011-06-03 17:06:29 -07001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Chia-chi Yehdadc8572012-06-08 13:05:58 -07002 package="com.android.vpndialogs">
Chia-chi Yeh19f054b2011-06-03 17:06:29 -07003
Christopher Tate2efd2db2011-07-19 16:32:49 -07004 <application android:label="VpnDialogs"
5 android:allowBackup="false" >
Chia-chi Yeh19f054b2011-06-03 17:06:29 -07006 <activity android:name=".ConfirmDialog"
Chia-chi Yehae380fb2012-01-23 18:33:26 -08007 android:theme="@*android:style/Theme.Holo.Dialog.Alert">
Chia-chi Yeh19f054b2011-06-03 17:06:29 -07008 <intent-filter>
9 <action android:name="android.intent.action.MAIN"/>
10 <category android:name="android.intent.category.DEFAULT"/>
11 </intent-filter>
12 </activity>
13
14 <activity android:name=".ManageDialog"
Chia-chi Yehae380fb2012-01-23 18:33:26 -080015 android:theme="@*android:style/Theme.Holo.Dialog.Alert"
Chia-chi Yeh19f054b2011-06-03 17:06:29 -070016 android:noHistory="true">
17 <intent-filter>
18 <action android:name="android.intent.action.MAIN"/>
19 <category android:name="android.intent.category.DEFAULT"/>
20 </intent-filter>
21 </activity>
22 </application>
23</manifest>