FreeOfCharge2022-23/TeamCode/build.gradle

43 lines
1.2 KiB
Groovy
Raw Normal View History

2021-10-19 17:53:06 -05:00
//
// build.gradle in TeamCode
//
// Most of the definitions for building your module reside in a common, shared
// file 'build.common.gradle'. Being factored in this way makes it easier to
// the build definitions, you can place those customizations in this file, but
// please think carefully as to whether such customizations are really necessary
// before doing so.
// Custom definitions may go here
// Include common definitions from above.
apply from: '../build.common.gradle'
apply from: '../build.dependencies.gradle'
2022-09-18 19:27:51 -05:00
android {
sourceSets {
main {
jniLibs.srcDirs = ['libs']
}
}
2022-09-18 19:27:51 -05:00
aaptOptions {
2022-09-18 19:27:51 -05:00
noCompress 'tflite'
}
packagingOptions {
pickFirsts += ['**/*.so']
2022-09-18 19:27:51 -05:00
}
}
2021-10-19 17:53:06 -05:00
dependencies {
implementation project(':FtcRobotController')
annotationProcessor files('lib/OpModeAnnotationProcessor.jar')
2022-10-26 17:49:41 -05:00
implementation 'org.openftc:easyopencv:1.5.2'
implementation 'org.apache.commons:commons-math3:3.6.1'
implementation 'com.acmerobotics.roadrunner:core:0.5.4'
2022-10-26 17:49:41 -05:00
implementation 'org.openftc:apriltag:1.1.0'
// implementation('com.acmeroborics.dashboard:dashboard:0.4.6') {
// exclude group: 'org.firstinspires.ftc'
// }
2021-10-19 17:53:06 -05:00
}