blob: bd5f739945b74ccdc3377b013fa408fc7e3d3392 [file] [log] [blame]
Chia-chi Yeh19f054b2011-06-03 17:06:29 -07001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Chia-chi Yeh5db03df2011-06-30 23:52:29 -07002 package="com.android.vpndialogs"
3 android:sharedUserId="android.uid.system">
Chia-chi Yeh19f054b2011-06-03 17:06:29 -07004
Christopher Tate2efd2db2011-07-19 16:32:49 -07005 <application android:label="VpnDialogs"
6 android:allowBackup="false" >
Chia-chi Yeh19f054b2011-06-03 17:06:29 -07007 <activity android:name=".ConfirmDialog"
Chia-chi Yeh339abf12011-07-15 12:00:55 -07008 android:permission="android.permission.VPN"
Chia-chi Yeh19f054b2011-06-03 17:06:29 -07009 android:theme="@style/transparent">
10 <intent-filter>
11 <action android:name="android.intent.action.MAIN"/>
12 <category android:name="android.intent.category.DEFAULT"/>
13 </intent-filter>
14 </activity>
15
16 <activity android:name=".ManageDialog"
17 android:theme="@style/transparent"
18 android:noHistory="true">
19 <intent-filter>
20 <action android:name="android.intent.action.MAIN"/>
21 <category android:name="android.intent.category.DEFAULT"/>
22 </intent-filter>
23 </activity>
24 </application>
25</manifest>