- Renamed project namespace to hanson.xyz.vpnhotspotmod

- Added BroadcastReceiver to recive intents to start wifi and bluetooth tether options via tasker
- Modified TetherService to run sticky
- Modified TetherManager to 'monitor' all new interfaces as soon as they are created
This commit is contained in:
Brian Hanson
2023-06-22 13:34:13 -05:00
parent a21f3c307e
commit cdf6094579
110 changed files with 661 additions and 572 deletions

View File

@@ -9,7 +9,7 @@ plugins {
}
android {
namespace = "be.mygod.vpnhotspot"
namespace = "hanson.xyz.vpnhotspotmod"
val javaVersion = 11
buildToolsVersion = "34.0.0"
@@ -24,7 +24,6 @@ android {
}
compileSdk = 34
defaultConfig {
applicationId = "be.mygod.vpnhotspot"
minSdk = 28
targetSdk = 34
resourceConfigurations.addAll(arrayOf("it", "pt-rBR", "ru", "zh-rCN", "zh-rTW"))
@@ -36,6 +35,7 @@ android {
put("room.incremental", "true")
put("room.schemaLocation", "$projectDir/schemas")
}
applicationId = "hanson.xyz.vpnhotspotmod"
}
buildFeatures {
buildConfig = true