aboutsummaryrefslogtreecommitdiff
path: root/examples/ex5_schedule_rpc/build.gradle
blob: 6424e440689b7dc183c70c96017a74f445f11704 (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 26

    defaultConfig {
        applicationId "com.google.android.mobly.snippet.example5"
        minSdkVersion 15
        targetSdkVersion 22
        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.3.0'
    implementation project(':mobly-snippet-lib')
    implementation 'com.android.support.test:runner:1.0.2'
}