power-play/TeamCode/build.gradle

32 lines
974 B
Groovy
Raw Permalink Normal View History

2020-09-21 11:09:43 -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
// integrate updates to the FTC into your code. If you really need to customize
// 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'
2021-02-18 10:03:59 -06:00
apply from: '../build.dependencies.gradle'
2020-09-21 11:09:43 -05:00
2022-07-22 23:50:42 -05:00
android {
namespace = 'org.firstinspires.ftc.teamcode'
2022-11-21 16:53:43 -06:00
packagingOptions {
jniLibs.useLegacyPackaging true
}
2022-07-22 23:50:42 -05:00
}
2020-09-21 11:09:43 -05:00
dependencies {
2021-02-18 10:03:59 -06:00
implementation project(':FtcRobotController')
2020-09-21 11:09:43 -05:00
annotationProcessor files('lib/OpModeAnnotationProcessor.jar')
implementation 'org.openftc:easyopencv:1.5.2'
implementation 'org.openftc:apriltag:1.1.0'
}