xref: /aosp_15_r20/external/mobly-snippet-lib/examples/ex5_schedule_rpc/build.gradle (revision ae5b1ec8a57d9cd6259556f14d3f2bb4f9fb3a85)
1apply plugin: 'com.android.application'
2
3android {
4    compileSdkVersion 31
5
6    defaultConfig {
7        applicationId "com.google.android.mobly.snippet.example5"
8        minSdkVersion 26
9        targetSdkVersion 31
10        versionCode 1
11        versionName "0.0.1"
12    }
13    lintOptions {
14        abortOnError false
15        checkAllWarnings true
16        warningsAsErrors true
17        disable 'HardwareIds','MissingApplicationIcon','GoogleAppIndexingWarning','InvalidPackage','OldTargetApi'
18    }
19}
20
21dependencies {
22    // The 'compile project' dep is to compile against the snippet lib source in
23    // this repo. For your own snippets, you'll want to use the regular 'compile' dep instead:
24    // compile 'com.google.android.mobly:mobly-snippet-lib:1.4.0'
25    implementation project(':mobly-snippet-lib')
26    implementation 'androidx.test:runner:1.4.0'
27}
28