blob: 78b1a9cb9065d618479075d49d10a9a400f96239 (
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
|
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
// JitPack is required for spake2-android, pulled in by :adb (libadb-android).
// Kept at settings level so the :adb module stays untouched upstream.
maven { url 'https://jitpack.io' }
}
}
rootProject.name = 'scrcpy-android'
include ':app'
include ':adb'
project(':adb').projectDir = new File(rootDir, 'vendor/libadb-android/libadb')
|