power-play/FtcRobotController/build.gradle

25 lines
556 B
Groovy
Raw Normal View History

2020-09-21 11:09:43 -05:00
import java.text.SimpleDateFormat
//
// build.gradle in FtcRobotController
//
apply plugin: 'com.android.library'
android {
defaultConfig {
minSdkVersion 23
targetSdkVersion 28
buildConfigField "String", "BUILD_TIME", '"' + (new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ", Locale.ROOT).format(new Date())) + '"'
}
2020-12-09 14:01:36 -06:00
compileSdkVersion 29
2020-09-21 11:09:43 -05:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
2021-02-18 10:03:59 -06:00
apply from: '../build.dependencies.gradle'