We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 321dab6 commit 0d1249eCopy full SHA for 0d1249e
1 file changed
TeamCode/build.gradle
@@ -17,12 +17,30 @@ apply from: '../build.dependencies.gradle'
17
18
android {
19
namespace = 'org.firstinspires.ftc.teamcode'
20
+ androidResources {
21
+ noCompress 'tflite'
22
+ }
23
24
packagingOptions {
25
+ jniLibs {
26
+ pickFirsts += ['**/*.so']
27
28
jniLibs.useLegacyPackaging true
29
}
30
31
32
+repositories {
33
+ maven {
34
+ url = 'https://maven.brott.dev/'
35
36
+}
37
+
38
dependencies {
39
implementation project(':FtcRobotController')
40
+ annotationProcessor files('lib/OpModeAnnotationProcessor.jar')
41
42
+ implementation "com.acmerobotics.roadrunner:ftc:0.1.13"
43
+ implementation "com.acmerobotics.roadrunner:core:1.0.0"
44
+ implementation "com.acmerobotics.roadrunner:actions:1.0.0"
45
+ implementation "com.acmerobotics.dashboard:dashboard:0.4.15"
46
0 commit comments