2011-06-03 17:06:29 -07:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-06-08 13:05:58 -07:00
|
|
|
package="com.android.vpndialogs">
|
2011-06-03 17:06:29 -07:00
|
|
|
|
2011-07-19 16:32:49 -07:00
|
|
|
<application android:label="VpnDialogs"
|
|
|
|
android:allowBackup="false" >
|
2011-06-03 17:06:29 -07:00
|
|
|
<activity android:name=".ConfirmDialog"
|
2012-01-23 18:33:26 -08:00
|
|
|
android:theme="@*android:style/Theme.Holo.Dialog.Alert">
|
2011-06-03 17:06:29 -07:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
<activity android:name=".ManageDialog"
|
2012-01-23 18:33:26 -08:00
|
|
|
android:theme="@*android:style/Theme.Holo.Dialog.Alert"
|
2011-06-03 17:06:29 -07:00
|
|
|
android:noHistory="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|