blob: 060839bce8d68287905e760fad08a8955395a141 (
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 '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')
|