mirror of
https://github.com/trc492/FtcTemplate.git
synced 2025-07-02 21:41:24 -07:00
Removed the fork relationship from FTC SDK so that people can fork this repo without problem if they already had an FTC SDK fork.
This commit is contained in:
30
TeamCode/build.gradle
Normal file
30
TeamCode/build.gradle
Normal file
@ -0,0 +1,30 @@
|
||||
//
|
||||
// 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'
|
||||
apply from: '../build.dependencies.gradle'
|
||||
|
||||
android {
|
||||
namespace = 'teamcode'
|
||||
|
||||
packagingOptions {
|
||||
jniLibs.useLegacyPackaging true
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':FtcRobotController')
|
||||
implementation 'org.apache.commons:commons-math3:3.6.1'
|
||||
annotationProcessor files('lib/OpModeAnnotationProcessor.jar')
|
||||
}
|
Reference in New Issue
Block a user