1
0
mirror of git://f0xx.org/ac/ac-mobile-android synced 2026-07-29 02:58:06 +03:00
This commit is contained in:
Anton Afanasyeu
2026-06-23 12:30:10 +02:00
commit 8675c2df3a
2972 changed files with 176371 additions and 0 deletions

33
settings.gradle Normal file
View File

@@ -0,0 +1,33 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.10.0'
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "AndroidCast"
include ':app'
include ':session-studio'
project(':session-studio').projectDir = file('desktop/session-studio')
def wgTunnelSrc = file('third-party/wireguard-android/tunnel')
if (!wgTunnelSrc.isDirectory()) {
throw new GradleException(
'Missing third-party/wireguard-android/tunnel — run:\n' +
' git submodule update --init --recursive third-party/wireguard-android\n' +
' bash scripts/init-wireguard-submodule.sh'
)
}
include ':tunnel'
project(':tunnel').projectDir = file('gradle/wireguard-tunnel')