FreeOfCharge2022-23/FtcRobotController/build.gradle

32 lines
744 B
Groovy
Raw Normal View History

2021-10-19 17:53:06 -05:00
import java.text.SimpleDateFormat
//
// build.gradle in FtcRobotController
//
apply plugin: 'com.android.library'
android {
sourceSets {
main {
jniLibs.srcDirs = ['libs']
}
}
2021-10-19 17:53:06 -05:00
defaultConfig {
minSdkVersion 23
//noinspection ExpiredTargetSdkVersion
2022-09-22 20:43:37 -05:00
targetSdkVersion 28
2021-10-19 17:53:06 -05:00
buildConfigField "String", "APP_BUILD_TIME", '"' + (new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ", Locale.ROOT).format(new Date())) + '"'
}
2022-09-22 20:43:37 -05:00
compileSdkVersion 29
2021-10-19 17:53:06 -05:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
2021-10-19 17:53:06 -05:00
}
2022-09-22 20:43:37 -05:00
namespace = 'com.qualcomm.ftcrobotcontroller'
2021-10-19 17:53:06 -05:00
}
apply from: '../build.dependencies.gradle'