mirror of
https://github.com/TimeCrafters/FTC_2022
synced 2025-12-15 16:42:35 +00:00
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.
33 lines
603 B
Groovy
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'
|
|
}
|
|
}
|