aboutsummaryrefslogtreecommitdiff
path: root/examples/ex7_default_and_optional_rpc/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ex7_default_and_optional_rpc/build.gradle')
-rw-r--r--examples/ex7_default_and_optional_rpc/build.gradle27
1 files changed, 27 insertions, 0 deletions
diff --git a/examples/ex7_default_and_optional_rpc/build.gradle b/examples/ex7_default_and_optional_rpc/build.gradle
new file mode 100644
index 0000000..35e3925
--- /dev/null
+++ b/examples/ex7_default_and_optional_rpc/build.gradle
@@ -0,0 +1,27 @@
+apply plugin: 'com.android.application'
+
+android {
+ compileSdkVersion 31
+ buildToolsVersion '31.0.0'
+
+ defaultConfig {
+ applicationId "com.google.android.mobly.snippet.example7"
+ minSdkVersion 26
+ targetSdkVersion 31
+ versionCode 1
+ versionName "0.0.1"
+ }
+ lintOptions {
+ abortOnError true
+ checkAllWarnings true
+ warningsAsErrors true
+ }
+}
+
+dependencies {
+ // The 'implementation project' dep is to compile against the snippet lib source in
+ // this repo. For your own snippets, you'll want to use the regular
+ // 'implementation' dep instead:
+ //implementation 'com.google.android.mobly:mobly-snippet-lib:1.4.0'
+ implementation project(':mobly-snippet-lib')
+}