Files
vpnhotspotmod/build.gradle.kts
Brian Hanson cdf6094579 - 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
2023-06-22 13:34:13 -05:00

14 lines
446 B
Kotlin

plugins {
id("com.android.application") version "8.0.2" apply false
id("com.github.ben-manes.versions") version "0.47.0"
id("org.jetbrains.kotlin.android") version "1.8.21" apply false
}
buildscript {
dependencies {
classpath("com.google.firebase:firebase-crashlytics-gradle:2.9.5")
classpath("com.google.android.gms:oss-licenses-plugin:0.10.6")
classpath("com.google.gms:google-services:4.3.15")
}
}