power-play/FtcRobotController/build.gradle

26 lines
607 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
2021-09-15 17:02:44 -05:00
//noinspection ExpiredTargetSdkVersion
2020-09-21 11:09:43 -05:00
targetSdkVersion 28
2021-09-15 17:02:44 -05:00
buildConfigField "String", "APP_BUILD_TIME", '"' + (new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ", Locale.ROOT).format(new Date())) + '"'
2020-09-21 11:09:43 -05:00
}
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'