Initial commit: Xuper VPN Launcher source code

This commit is contained in:
Renato
2026-02-09 22:24:07 +01:00
commit 8bb094cf1a
626 changed files with 25325 additions and 0 deletions

30
app/build.gradle Normal file
View File

@@ -0,0 +1,30 @@
plugins {
id 'com.android.application'
}
android {
namespace 'com.cbcren.vpn'
compileSdkVersion 33
defaultConfig {
applicationId "com.cbcren.vpn"
minSdkVersion 24
targetSdkVersion 33
versionCode 1
versionName "1.0"
// Multidex necesario para librerías grandes
multiDexEnabled true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}
dependencies {
// Versiones más antiguas y estables
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'com.google.android.material:material:1.5.0'
implementation 'com.wireguard.android:tunnel:1.0.20230706'
}