23 lines
894 B
Groovy
23 lines
894 B
Groovy
repositories {
|
|
mavenCentral()
|
|
google() // Needed for androidx
|
|
maven { url 'https://repo.dairy.foundation/releases/'}
|
|
maven { url = "https://mymaven.bylazar.com/releases" }
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.firstinspires.ftc:Inspection:12.0.0'
|
|
implementation 'org.firstinspires.ftc:Blocks:12.0.0'
|
|
implementation 'org.firstinspires.ftc:RobotCore:12.0.0'
|
|
implementation 'org.firstinspires.ftc:RobotServer:12.0.0'
|
|
implementation 'org.firstinspires.ftc:OnBotJava:12.0.0'
|
|
implementation 'org.firstinspires.ftc:Hardware:12.0.0'
|
|
implementation 'org.firstinspires.ftc:FtcCommon:12.0.0'
|
|
implementation 'org.firstinspires.ftc:Vision:12.0.0'
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
|
|
implementation 'com.bylazar:fullpanels:1.0.12'
|
|
implementation 'com.pedropathing:revhub:3.0.0'
|
|
implementation 'com.pedropathing:tuning:1.0.0'
|
|
}
|