mirror of
https://github.com/wgtunnel/android.git
synced 2026-06-02 00:29:08 +02:00
8b81831910
This adds a tunnel configuration screen where user can configure split application tunneling and change tunnel name. Additional QR code validation added to prevent adding of invalid QR codes to tunnels. Minor UI quality-of-life changes. Closes #3
21 lines
769 B
Kotlin
21 lines
769 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.44")
|
|
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.6")
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("com.android.application") version "8.2.0-alpha08" apply false
|
|
id("org.jetbrains.kotlin.android") version "1.8.21" apply false
|
|
id("com.google.dagger.hilt.android") version "2.44" apply false
|
|
kotlin("plugin.serialization") version "1.8.21" apply false
|
|
}
|