mirror of
https://github.com/wgtunnel/android.git
synced 2026-07-03 14:07:49 +02:00
ffa7a207fb
Added basic kernel support to allow users to switch between userspace and kernel wireguard Improved location disclosure flow to only show once once per app install Fix airplane mode bug Improve database migration testing Fix auto-tunneling permission bug. Lint Closes #67 Closes #43
17 lines
527 B
Kotlin
17 lines
527 B
Kotlin
buildscript {
|
|
dependencies {
|
|
if (BuildHelper.isReleaseBuild(gradle) && BuildHelper.isGeneralFlavor(gradle)) {
|
|
classpath(libs.google.services)
|
|
classpath(libs.firebase.crashlytics.gradle)
|
|
}
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
alias(libs.plugins.android.application) apply false
|
|
alias(libs.plugins.kotlin.android) apply false
|
|
alias(libs.plugins.hilt.android) apply false
|
|
kotlin("plugin.serialization").version(libs.versions.kotlin).apply(false)
|
|
alias(libs.plugins.ksp) apply false
|
|
}
|