blob: 2fcb8f9b4956e15d87755bb6a14a6bb35a1448cc [file] [log] [blame]
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion '25.0.0'
defaultConfig {
applicationId "com.google.android.mobly.snippet.example3"
minSdkVersion 11
targetSdkVersion 24
versionCode 1
versionName "0.0.1"
}
lintOptions {
abortOnError true
checkAllWarnings true
warningsAsErrors true
}
}
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')
}