2011-06-03 17:06:29 -07:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-06-30 23:52:29 -07:00
|
|
|
package="com.android.vpndialogs"
|
|
|
|
android:sharedUserId="android.uid.system">
|
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"
|
|
|
|
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>
|