Files
rk35xx-android14/external/mobly-snippet-lib/examples/ex5_schedule_rpc/build.gradle
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

28 lines
856 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 31
defaultConfig {
applicationId "com.google.android.mobly.snippet.example5"
minSdkVersion 26
targetSdkVersion 31
versionCode 1
versionName "0.0.1"
}
lintOptions {
abortOnError false
checkAllWarnings true
warningsAsErrors true
disable 'HardwareIds','MissingApplicationIcon','GoogleAppIndexingWarning','InvalidPackage','OldTargetApi'
}
}
dependencies {
// The 'compile project' dep is to compile against the snippet lib source in
// this repo. For your own snippets, you'll want to use the regular 'compile' dep instead:
// compile 'com.google.android.mobly:mobly-snippet-lib:1.4.0'
implementation project(':mobly-snippet-lib')
implementation 'androidx.test:runner:1.4.0'
}