Chia-chi Yeh 19f054b0f6 The UI part of the user space VPN support.
Change-Id: Ia9b7d516f977bc0fa7c30f44ff8111466838d1aa
2011-06-03 17:06:29 -07:00

23 lines
869 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.vpndialogs">
<application android:label="VpnDialogs">
<activity android:name=".ConfirmDialog"
android:theme="@style/transparent">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity android:name=".ManageDialog"
android:theme="@style/transparent"
android:noHistory="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
</application>
</manifest>