aboutsummaryrefslogtreecommitdiff
path: root/examples/ex4_uiautomator/build.gradle
blob: 9b4bbe6091aa9a76b872828178b38cf7f4b89538 (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
28
29
30
31
32
apply plugin: 'com.android.application'

android {
    // This has to match what the appcompat dep expects.
    compileSdkVersion 28

    defaultConfig {
        applicationId "com.google.android.mobly.snippet.example4"
        minSdkVersion 18
        targetSdkVersion 26
        versionCode 1
        versionName "0.0.2"
    }
    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.3.0'
    implementation project(':mobly-snippet-lib')
    implementation 'junit:junit:4.12'
    implementation 'androidx.test:runner:1.1.1'
    implementation 'androidx.appcompat:appcompat:1.1.0-alpha01'
    implementation 'androidx.test.uiautomator:uiautomator:2.2.0'
}