Downgrade to WireGuard 2021 + Java 11 + Manifest patch for legacy TV Box support

This commit is contained in:
Renato
2026-02-09 22:50:23 +01:00
parent 8bb094cf1a
commit 273b917096
188 changed files with 19550 additions and 43 deletions

View File

@@ -1,16 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cbcren.vpn"
android:versionCode="1"
android:versionName="1.0" >
android:versionCode="3"
android:versionName="1.2-legacy" >
<uses-sdk
android:minSdkVersion="24"
android:minSdkVersion="21"
android:targetSdkVersion="33" />
<uses-permission android:name="android.permission.INTERNET" />
<!-- Declarar soporte para TV (Leanback) -->
<uses-feature
android:name="android.software.leanback"
android:required="false" />
@@ -21,7 +20,6 @@
<application
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
android:debuggable="true"
android:extractNativeLibs="false"
android:label="Xuper VPN"
android:theme="@style/Theme.MaterialComponents.Light.NoActionBar" >
<activity
@@ -35,9 +33,10 @@
</intent-filter>
</activity>
<!-- Parche para librería WireGuard antigua -->
<service
android:name="com.wireguard.android.backend.GoBackend$VpnService"
android:exported="false"
android:exported="true"
android:permission="android.permission.BIND_VPN_SERVICE" >
<intent-filter>
<action android:name="android.net.VpnService" />

View File

@@ -11,8 +11,8 @@
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 1,
"versionName": "1.0",
"versionCode": 3,
"versionName": "1.2-legacy",
"outputFile": "AndroidManifest.xml"
}
],