f204ab3ebc
commit 8e1a200225b7e4756b83d17d679a71a06a38b696 Author: Eric Fischer <enf@google.com> Date: Tue Jun 16 16:32:56 2009 -0700 Make names of Settings, VPN, Subscribed Feeds providers localizable.
23 lines
945 B
XML
23 lines
945 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.server.vpn"
|
|
android:sharedUserId="android.uid.system"
|
|
>
|
|
<application android:label="@string/app_label">
|
|
|
|
<service android:name=".VpnServiceBinder" android:process=":remote">
|
|
<intent-filter>
|
|
<!-- These are the interfaces supported by the service, which
|
|
you can bind to. -->
|
|
<action android:name="android.net.vpn.IVpnService" />
|
|
<!-- This is an action code you can use to select the service
|
|
without explicitly supplying the implementation class. -->
|
|
<action android:name="android.net.vpn.SERVICE" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
</application>
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
|
|
</manifest>
|