Files
FTCDecodeMain/build.dependencies.gradle
KeshavAnandCode 7043274ebd test commit 3
2026-03-18 15:15:38 -05:00

38 lines
1.5 KiB
Groovy

repositories {
mavenCentral()
google() // Needed for androidx
maven { url = 'https://maven.pedropathing.com' } //Pedro
maven { url = "https://mymaven.bylazar.com/releases" } //Panels
maven { url = 'https://maven.brott.dev/' } //RR
maven { url = "https://maven.rowanmcalpin.com/" } //Next FTC
maven { url = "https://repo.dairy.foundation/releases" } //AS
}
dependencies {
implementation 'org.firstinspires.ftc:Inspection:11.1.0'
implementation 'org.firstinspires.ftc:Blocks:11.1.0'
//noinspection Aligned16KB
implementation 'org.firstinspires.ftc:RobotCore:11.1.0'
implementation 'org.firstinspires.ftc:RobotServer:11.1.0'
implementation 'org.firstinspires.ftc:OnBotJava:11.1.0'
implementation 'org.firstinspires.ftc:Hardware:11.1.0'
implementation 'org.firstinspires.ftc:FtcCommon:11.1.0'
implementation 'org.firstinspires.ftc:Vision:11.1.0'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.pedropathing:ftc:2.0.6' //PedroCore
implementation 'com.pedropathing:telemetry:1.0.0' //PedroTele
implementation 'com.bylazar:fullpanels:1.0.2' //Panels
implementation 'org.ftclib.ftclib:core:2.1.1' // FTC LIB
implementation 'com.rowanmcalpin.nextftc:core:0.6.2' //NEXT FTC
implementation 'com.rowanmcalpin.nextftc:ftc:0.6.2'//NEXT FTC
implementation 'com.rowanmcalpin.nextftc:pedro:0.6.2'//NEXT FTC
implementation("page.j5155.AdvantageScope:lite:v26.0.0") //AS
}