aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--build.gradle3
-rw-r--r--gradle.properties1
3 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index ee0c4f2..bb4ba01 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ Note: this is not an official Google product.
1. Compile and install the bundled snippets
./gradlew assembleDebug
- adb install -d -r -g ./build/outputs/apk/mobly-bundled-snippets-debug.apk
+ adb install -d -r -g ./build/outputs/apk/debug/mobly-bundled-snippets-debug.apk
1. Use the Mobly snippet shell to interact with the bundled snippets
diff --git a/build.gradle b/build.gradle
index e63fcb7..efbf5e7 100644
--- a/build.gradle
+++ b/build.gradle
@@ -6,7 +6,7 @@ buildscript {
google()
}
dependencies {
- classpath 'com.android.tools.build:gradle:3.1.2'
+ classpath 'com.android.tools.build:gradle:3.1.4'
// NOTE: Do not place your application dependencies here.
}
@@ -42,6 +42,7 @@ android {
versionCode 1
versionName "0.0.1"
setProperty("archivesBaseName", "mobly-bundled-snippets")
+ multiDexEnabled true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
diff --git a/gradle.properties b/gradle.properties
index 8bd86f6..320e584 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1 +1,2 @@
org.gradle.jvmargs=-Xmx1536M
+android.enableD8.desugaring=true