mirror of
https://github.com/trc492/FtcTemplate.git
synced 2025-07-01 21:11:23 -07:00
31 lines
711 B
Groovy
31 lines
711 B
Groovy
import java.text.SimpleDateFormat
|
|
|
|
//
|
|
// build.gradle in FtcRobotController
|
|
//
|
|
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
|
|
defaultConfig {
|
|
minSdkVersion 24
|
|
//noinspection ExpiredTargetSdkVersion
|
|
targetSdkVersion 28
|
|
buildConfigField "String", "APP_BUILD_TIME", '"' + (new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ", Locale.ROOT).format(new Date())) + '"'
|
|
}
|
|
|
|
buildFeatures {
|
|
buildConfig = true
|
|
}
|
|
|
|
compileSdkVersion 30
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
namespace = 'com.qualcomm.ftcrobotcontroller'
|
|
}
|
|
|
|
apply from: '../build.dependencies.gradle'
|