aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle
blob: 0d847c707bf738e90d580c854b8931debe3fe1fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
pluginManagement {
    repositories {
        google()
        mavenCentral()
        gradlePluginPortal()
    }
}

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        // JitPack is used only for libadb's SPAKE2 pairing bridge. Do not
        // allow it to shadow artifacts available from the primary repos.
        exclusiveContent {
            forRepository {
                maven { url = uri('https://jitpack.io') }
            }
            filter {
                includeModule 'com.github.MuntashirAkon.spake2-java', 'spake2-android'
            }
        }
    }
}

rootProject.name = 'scrcpy-android'

include ':app'
include ':adb'
project(':adb').projectDir = new File(rootDir, 'vendor/libadb-android/libadb')