Files
FTC_2022/build.gradle
SpencerPiha 393a4608cf New autonomous steps are listed out with a couple states filled in (I put in the states I knew we don't need to change.
I changed the name of the testing folder to TeleOp because that is what the folder is, it's not for testing anymore and it keeps confusing me.
2022-12-02 20:41:30 -06:00

33 lines
603 B
Groovy

/**
* Top-level build file for ftc_app project.
*
* It is extraordinarily rare that you will ever need to edit this file.
*/
buildscript {
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.0'
}
}
// This is now required because aapt2 has to be downloaded from the
// google() repository beginning with version 3.2 of the Android Gradle Plugin
allprojects {
repositories {
mavenCentral()
google()
}
}
repositories {
mavenCentral()
flatDir {
dirs '../libs'
}
}