60 lines
2.2 KiB
XML
60 lines
2.2 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE" />
|
|
|
|
<application
|
|
android:allowBackup="false"
|
|
android:label="RAP VPN"
|
|
android:theme="@style/AppTheme"
|
|
android:usesCleartextTraffic="true">
|
|
<activity
|
|
android:name=".RdpActivity"
|
|
android:configChanges="orientation|screenSize|keyboardHidden"
|
|
android:exported="false"
|
|
android:screenOrientation="landscape" />
|
|
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".TestVpnActivity"
|
|
android:exported="true"
|
|
android:theme="@style/AppTheme" />
|
|
|
|
<activity
|
|
android:name=".TestTrafficActivity"
|
|
android:exported="true"
|
|
android:theme="@style/AppTheme" />
|
|
|
|
<service
|
|
android:name=".RapVpnService"
|
|
android:exported="false"
|
|
android:foregroundServiceType="specialUse"
|
|
android:permission="android.permission.BIND_VPN_SERVICE">
|
|
<intent-filter>
|
|
<action android:name="android.net.VpnService" />
|
|
</intent-filter>
|
|
<property
|
|
android:name="android.app.PROPERTY_SPECIAL_USE_FGS_SUBTYPE"
|
|
android:value="vpn" />
|
|
</service>
|
|
|
|
<service
|
|
android:name=".RapDiagnosticService"
|
|
android:exported="false"
|
|
android:foregroundServiceType="specialUse">
|
|
<property
|
|
android:name="android.app.PROPERTY_SPECIAL_USE_FGS_SUBTYPE"
|
|
android:value="vpn-diagnostics" />
|
|
</service>
|
|
</application>
|
|
</manifest>
|