mirror of
https://github.com/wgtunnel/android.git
synced 2026-06-02 00:29:08 +02:00
64bb9f3b82
Attempt to fix startForegrounService causing crashes on some devices by not meeting the 5 second notification rule. Add notification to onCreate of services. Limit startForeground to only be called where it is truly necessary in the TileService to allow starting the VPN while app is not running. Attempt to manually initialize mlkit for QR code scanning to remediate some crashes caused by config scanning.
21 lines
768 B
Kotlin
21 lines
768 B
Kotlin
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
val objectBoxVersion by extra("3.5.1")
|
|
val hiltVersion by extra("2.47")
|
|
val accompanistVersion by extra("0.31.2-alpha")
|
|
|
|
dependencies {
|
|
classpath("io.objectbox:objectbox-gradle-plugin:$objectBoxVersion")
|
|
classpath("com.google.gms:google-services:4.3.15")
|
|
classpath("com.google.firebase:firebase-crashlytics-gradle:2.9.7")
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("com.android.application") version "8.2.0-beta03" apply false
|
|
id("org.jetbrains.kotlin.android") version "1.8.22" apply false
|
|
id("com.google.dagger.hilt.android") version "2.44" apply false
|
|
kotlin("plugin.serialization") version "1.8.22" apply false
|
|
}
|