aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'settings.gradle')
-rw-r--r--settings.gradle24
1 files changed, 24 insertions, 0 deletions
diff --git a/settings.gradle b/settings.gradle
new file mode 100644
index 0000000..78b1a9c
--- /dev/null
+++ b/settings.gradle
@@ -0,0 +1,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')