xref: /aosp_15_r20/external/mobly-snippet-lib/examples/ex7_default_and_optional_rpc/build.gradle (revision ae5b1ec8a57d9cd6259556f14d3f2bb4f9fb3a85)
1apply plugin: 'com.android.application'
2
3android {
4    compileSdkVersion 31
5    buildToolsVersion '31.0.0'
6
7    defaultConfig {
8        applicationId "com.google.android.mobly.snippet.example7"
9        minSdkVersion 26
10        targetSdkVersion 31
11        versionCode 1
12        versionName "0.0.1"
13    }
14    lintOptions {
15        abortOnError true
16        checkAllWarnings true
17        warningsAsErrors true
18    }
19}
20
21dependencies {
22    // The 'implementation 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
24    // 'implementation' dep instead:
25    //implementation 'com.google.android.mobly:mobly-snippet-lib:1.4.0'
26    implementation project(':mobly-snippet-lib')
27}
28