Skip to content

Commit 0d1249e

Browse files
committed
基本校验
1 parent 321dab6 commit 0d1249e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

TeamCode/build.gradle

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,30 @@ apply from: '../build.dependencies.gradle'
1717

1818
android {
1919
namespace = 'org.firstinspires.ftc.teamcode'
20+
androidResources {
21+
noCompress 'tflite'
22+
}
2023

2124
packagingOptions {
25+
jniLibs {
26+
pickFirsts += ['**/*.so']
27+
}
2228
jniLibs.useLegacyPackaging true
2329
}
2430
}
2531

32+
repositories {
33+
maven {
34+
url = 'https://maven.brott.dev/'
35+
}
36+
}
37+
2638
dependencies {
2739
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"
2846
}

0 commit comments

Comments
 (0)