-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.dependencies.gradle
More file actions
42 lines (37 loc) · 1.74 KB
/
Copy pathbuild.dependencies.gradle
File metadata and controls
42 lines (37 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
repositories {
mavenCentral()
google() // Needed for androidx
maven { url = "https://mymaven.bylazar.com/releases" }
maven { url = 'https://maven.brott.dev/' }
}
dependencies {
implementation 'org.firstinspires.ftc:Inspection:11.1.0'
implementation 'org.firstinspires.ftc:Blocks:11.1.0'
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.acmerobotics.dashboard:dashboard:0.6.0'
implementation 'com.pedropathing:ftc:2.1.2'
implementation 'com.pedropathing:telemetry:1.0.0'
implementation 'com.pedropathing:ivy:1.0.0'
// If we want more options in panels, install them manually
// Don't use fullpanels because it doesn't launch (something is probably broken in one of the panels)
implementation 'com.bylazar:panels:1.0.5'
implementation 'com.bylazar:configurables:1.0.5'
implementation 'com.bylazar:field:1.0.6'
implementation 'com.bylazar:telemetry:1.0.5'
implementation 'com.bylazar:opmodecontrol:1.0.3'
implementation 'com.bylazar:gamepad:1.0.4'
implementation 'com.bylazar:battery:1.0.3'
implementation 'com.bylazar:camerastream:1.0.0'
implementation 'com.bylazar:capture:1.0.3'
implementation 'com.bylazar:graph:1.0.4'
implementation 'com.bylazar:lights:1.0.3'
implementation 'com.bylazar:pinger:1.0.3'
implementation 'com.bylazar:themes:1.0.3'
implementation 'com.bylazar:utils:1.0.4'
}