aboutsummaryrefslogtreecommitdiff
path: root/examples/ex4_uiautomator/build.gradle
diff options
context:
space:
mode:
authorZiwei Zhang <zhangxh@google.com>2024-04-09 12:49:28 +0800
committerZiwei Zhang <zhangxh@google.com>2024-04-09 05:01:40 +0000
commit23cff8ec536cad6ee60e68d4cbfa338c20571294 (patch)
tree38533c9648bef596a95c5fa85774a4946e992625 /examples/ex4_uiautomator/build.gradle
parenta3af46165c6d4168bb33d6e97b9959eba531b5bd (diff)
parent3c705915cad43acd88a8815b3f3e3cf9455a60a4 (diff)
downloadmobly-snippet-lib-23cff8ec536cad6ee60e68d4cbfa338c20571294.tar.gz
Upgrade mobly-snippet-lib to 3c705915cad43acd88a8815b3f3e3cf9455a60a4
This project was upgraded with external_updater. Usage: tools/external_updater/updater.sh update external/mobly-snippet-lib For more info, check https://cs.android.com/android/platform/superproject/+/main:tools/external_updater/README.md Test: TreeHugger Bug: 331669033 Change-Id: I9c9338bbc1bbadf87f96381a366ba1f977965572
Diffstat (limited to 'examples/ex4_uiautomator/build.gradle')
-rw-r--r--examples/ex4_uiautomator/build.gradle32
1 files changed, 0 insertions, 32 deletions
diff --git a/examples/ex4_uiautomator/build.gradle b/examples/ex4_uiautomator/build.gradle
deleted file mode 100644
index 24188d9..0000000
--- a/examples/ex4_uiautomator/build.gradle
+++ /dev/null
@@ -1,32 +0,0 @@
-apply plugin: 'com.android.application'
-
-android {
- // This has to match what the appcompat dep expects.
- compileSdkVersion 31
-
- defaultConfig {
- applicationId "com.google.android.mobly.snippet.example4"
- minSdkVersion 26
- targetSdkVersion 31
- versionCode 1
- versionName "0.0.2"
- }
- 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.4.0'
- implementation project(':mobly-snippet-lib')
- implementation 'junit:junit:4.13.2'
- implementation 'androidx.test:runner:1.4.0'
- implementation 'androidx.appcompat:appcompat:1.4.0-beta01'
- implementation 'androidx.test.uiautomator:uiautomator:2.2.0'
-}