mirror of
git://f0xx.org/ac/ac-mobile-android
synced 2026-07-29 02:58:06 +03:00
initial
This commit is contained in:
33
settings.gradle
Normal file
33
settings.gradle
Normal 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')
|
||||
Reference in New Issue
Block a user