aboutsummaryrefslogtreecommitdiff
path: root/examples/ex1_standalone_app/build.gradle
blob: 035e331918406dc020e8fe7fe9eb6340136f85f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
apply plugin: 'com.android.application'

android {
    compileSdkVersion 24
    buildToolsVersion "24.0.3"

    defaultConfig {
        applicationId "com.google.android.mobly.snippet.example1"
        minSdkVersion 11
        targetSdkVersion 24
        versionCode 1
        versionName "0.0.1"
    }
}

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.2.0'
    compile project(':mobly-snippet-lib')
}