xref: /aosp_15_r20/external/mobly-snippet-lib/examples/ex1_standalone_app/build.gradle (revision ae5b1ec8a57d9cd6259556f14d3f2bb4f9fb3a85)
1apply plugin: 'com.android.application'
2
3android {
4    compileSdkVersion 31
5
6    defaultConfig {
7        applicationId "com.google.android.mobly.snippet.example1"
8        minSdkVersion 26
9        targetSdkVersion 31
10        versionCode 1
11        versionName "0.0.1"
12    }
13    lintOptions {
14        abortOnError false
15        checkAllWarnings true
16        warningsAsErrors true
17        disable 'HardwareIds','MissingApplicationIcon','GoogleAppIndexingWarning','InvalidPackage','OldTargetApi'
18    }
19}
20
21dependencies {
22    // The 'implementation project' dep is to compile against the snippet lib source in
23    // this repo. For your own snippets, you'll want to use the regular
24    // 'implementation' dep instead:
25    //implementation 'com.google.android.mobly:mobly-snippet-lib:1.4.0'
26    implementation project(':mobly-snippet-lib')
27}
28