aboutsummaryrefslogtreecommitdiff
path: root/examples/ex6_complex_type_conversion/build.gradle
blob: 073a437fb09bec4e54ecee0023d2dcd8ac198ba1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
apply plugin: 'com.android.application'

android {
    compileSdkVersion 31
    buildToolsVersion '31.0.0'

    defaultConfig {
        applicationId "com.google.android.mobly.snippet.example6"
        minSdkVersion 26
        targetSdkVersion 31
        versionCode 1
        versionName "0.0.1"
    }
    lintOptions {
        abortOnError true
        checkAllWarnings true
        warningsAsErrors true
    }
}

dependencies {
    // The 'implementation project' dep is to compile against the snippet lib source in
    // this repo. For your own snippets, you'll want to use the regular
    // 'implementation' dep instead:
    //implementation 'com.google.android.mobly:mobly-snippet-lib:1.4.0'
    implementation project(':mobly-snippet-lib')
}