From e04a16a6922edd6391eae56f080f76d3299522b8 Mon Sep 17 00:00:00 2001 From: KeshavAnandCode Date: Thu, 3 Sep 2026 17:30:36 -0500 Subject: [PATCH] added sloth deps and configs --- .run/Sloth Load.run.xml | 27 +++++++++++++++ .run/TeamCode.run.xml | 69 +++++++++++++++++++++++++++++++++++++++ TeamCode/build.gradle | 16 +++++++++ build.dependencies.gradle | 7 ++-- 4 files changed, 116 insertions(+), 3 deletions(-) create mode 100644 .run/Sloth Load.run.xml create mode 100644 .run/TeamCode.run.xml diff --git a/.run/Sloth Load.run.xml b/.run/Sloth Load.run.xml new file mode 100644 index 0000000..f071761 --- /dev/null +++ b/.run/Sloth Load.run.xml @@ -0,0 +1,27 @@ + + + + + + + true + true + false + false + false + false + false + + + \ No newline at end of file diff --git a/.run/TeamCode.run.xml b/.run/TeamCode.run.xml new file mode 100644 index 0000000..6319f59 --- /dev/null +++ b/.run/TeamCode.run.xml @@ -0,0 +1,69 @@ + + + + + \ No newline at end of file diff --git a/TeamCode/build.gradle b/TeamCode/build.gradle index f7307a8..6ed9173 100644 --- a/TeamCode/build.gradle +++ b/TeamCode/build.gradle @@ -1,3 +1,15 @@ +buildscript { + repositories { + mavenCentral() + maven { + url "https://repo.dairy.foundation/releases" + } + } + dependencies { + classpath "dev.frozenmilk:Load:0.2.4" + } +} + apply plugin: 'com.android.application' // @@ -16,6 +28,8 @@ apply plugin: 'com.android.application' apply from: '../build.common.gradle' apply from: '../build.dependencies.gradle' +apply plugin: 'dev.frozenmilk.sinister.sloth.load' + android { namespace = 'org.firstinspires.ftc.teamcode' @@ -26,4 +40,6 @@ android { dependencies { implementation project(':FtcRobotController') + + implementation("dev.frozenmilk.sinister:Sloth:0.2.4") } diff --git a/build.dependencies.gradle b/build.dependencies.gradle index 931502f..d9803b1 100644 --- a/build.dependencies.gradle +++ b/build.dependencies.gradle @@ -1,7 +1,8 @@ repositories { mavenCentral() - google() // Needed for androidx - maven { url = "https://mymaven.bylazar.com/releases" } + google() + maven {url = "https://repo.dairy.foundation/releases" } + maven {url = "https://mymaven.bylazar.com/releases" } } dependencies { @@ -18,6 +19,6 @@ dependencies { implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'com.pedropathing:ftc:2.1.2' implementation 'com.pedropathing:telemetry:1.0.0' - implementation 'com.bylazar:fullpanels:1.0.12' + implementation("com.bylazar.sloth:fullpanels:0.2.4+1.0.12") }