-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.dependencies.gradle
More file actions
35 lines (29 loc) · 1.34 KB
/
build.dependencies.gradle
File metadata and controls
35 lines (29 loc) · 1.34 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
repositories {
mavenCentral()
google() // Needed for androidx
// Start Freik-added stuff:
// Used by TechnoLib; jitpack.io can turn GitHub Releases into package repository like jsDelivr
maven { url = 'https://jitpack.io' }
// Panels dashbboard
maven { url = "https://mymaven.bylazar.com/releases" }
}
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.7.1'
// Freik: 16750/20403 external dependencies:
// TechnoLib: This should be commented out to use a local source copy
// 'bun libflip' will also comment it out
// implementation 'com.github.technototes:technolib:2.3.0' // FLIP: TechnoLibLocal
// Adding support for Pedro Pathing
implementation 'com.pedropathing:ftc:2.0.6'
implementation 'com.pedropathing:telemetry:1.0.0'
implementation 'com.bylazar:fullpanels:1.0.12'
}