aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Dorokhine <adorokhine@google.com>2017-05-25 18:56:36 -0700
committerAlexander Dorokhine <adorokhine@google.com>2017-05-30 15:26:09 -0700
commit04d34211496595a4ecabe996244d3956f8dec255 (patch)
tree5880b77daf316ccf251f65ff174600220470a0c2
parent6c2e991ea95baffd1b910644655161ad23893a30 (diff)
downloadmobly-snippet-lib-04d34211496595a4ecabe996244d3956f8dec255.tar.gz
Snippet lib release v1.2.0.
-rw-r--r--CHANGELOG14
-rw-r--r--examples/ex1_standalone_app/README.md2
-rw-r--r--examples/ex1_standalone_app/build.gradle2
-rw-r--r--examples/ex2_espresso/README.md2
-rw-r--r--examples/ex2_espresso/build.gradle2
-rw-r--r--examples/ex3_async_event/build.gradle2
-rw-r--r--examples/ex4_uiautomator/build.gradle2
-rw-r--r--third_party/sl4a/gradle.properties4
8 files changed, 19 insertions, 11 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 4848d14..e8b1eb6 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,10 +1,18 @@
+1.2.0:
+ - New startup protocol:
+ - Snippet protocol is now versionated and reported to instrumentation output
+ - Snippet startup progress can now be monitored via output
+ - Server port can now be allocated on device and reported via output
+ - Improvements to help() output
+ - Allow close() methods to throw exceptions
+
1.1.0:
- Support for asynchronous RPCs
- Add an optional annotation to cause RPCs to be invoked on the main thread
- Log tags are now configurable in the manifest
1.0.1:
- - Ignore regular JUnit tests linked into the snippet lib.
- - Improved exception handling and reporting.
+ - Ignore regular JUnit tests linked into the snippet lib
+ - Improved exception handling and reporting
-1.0.0: Initial release of Mobly Snippet Lib with some examples.
+1.0.0: Initial release of Mobly Snippet Lib with some examples
diff --git a/examples/ex1_standalone_app/README.md b/examples/ex1_standalone_app/README.md
index f5b4163..3a1546a 100644
--- a/examples/ex1_standalone_app/README.md
+++ b/examples/ex1_standalone_app/README.md
@@ -11,7 +11,7 @@ by itself and doesn't instrument a main app.
```
dependencies {
- compile 'com.google.android.mobly:mobly-snippet-lib:1.1.0'
+ compile 'com.google.android.mobly:mobly-snippet-lib:1.2.0'
}
```
diff --git a/examples/ex1_standalone_app/build.gradle b/examples/ex1_standalone_app/build.gradle
index 9fec009..035e331 100644
--- a/examples/ex1_standalone_app/build.gradle
+++ b/examples/ex1_standalone_app/build.gradle
@@ -17,6 +17,6 @@ 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.1.0'
+ //compile 'com.google.android.mobly:mobly-snippet-lib:1.2.0'
compile project(':mobly-snippet-lib')
}
diff --git a/examples/ex2_espresso/README.md b/examples/ex2_espresso/README.md
index e98ee02..5c70be5 100644
--- a/examples/ex2_espresso/README.md
+++ b/examples/ex2_espresso/README.md
@@ -33,7 +33,7 @@ The snippet code cannot run from a regular test apk because it requires a custom
```
dependencies {
- snippetCompile 'com.google.android.mobly:mobly-snippet-lib:1.1.0'
+ snippetCompile 'com.google.android.mobly:mobly-snippet-lib:1.2.0'
}
```
diff --git a/examples/ex2_espresso/build.gradle b/examples/ex2_espresso/build.gradle
index 9e77d2b..00a4df9 100644
--- a/examples/ex2_espresso/build.gradle
+++ b/examples/ex2_espresso/build.gradle
@@ -35,7 +35,7 @@ dependencies {
// The 'snippetCompile project' dep is to compile against the snippet lib
// source in this repo. For your own snippets, you'll want to use the
// regular 'snippetCompile' dep instead:
- //snippetCompile 'com.google.android.mobly:mobly-snippet-lib:1.1.0'
+ //snippetCompile 'com.google.android.mobly:mobly-snippet-lib:1.2.0'
snippetCompile project(':mobly-snippet-lib')
snippetCompile 'com.android.support.test.espresso:espresso-core:2.2.2'
diff --git a/examples/ex3_async_event/build.gradle b/examples/ex3_async_event/build.gradle
index 585f18f..661cf2e 100644
--- a/examples/ex3_async_event/build.gradle
+++ b/examples/ex3_async_event/build.gradle
@@ -16,6 +16,6 @@ android {
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.1.0'
+ // compile 'com.google.android.mobly:mobly-snippet-lib:1.2.0'
compile project(':mobly-snippet-lib')
}
diff --git a/examples/ex4_uiautomator/build.gradle b/examples/ex4_uiautomator/build.gradle
index 2a52cd3..41aa43d 100644
--- a/examples/ex4_uiautomator/build.gradle
+++ b/examples/ex4_uiautomator/build.gradle
@@ -17,7 +17,7 @@ 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.1.0'
+ //compile 'com.google.android.mobly:mobly-snippet-lib:1.2.0'
compile project(':mobly-snippet-lib')
compile 'com.android.support:appcompat-v7:24.2.1'
diff --git a/third_party/sl4a/gradle.properties b/third_party/sl4a/gradle.properties
index 3d5db72..3c628a3 100644
--- a/third_party/sl4a/gradle.properties
+++ b/third_party/sl4a/gradle.properties
@@ -1,6 +1,6 @@
# This version code implements the versioning recommendations in:
# https://blog.jayway.com/2015/03/11/automatic-versioncode-generation-in-android-gradle/
-VERSION_CODE=1010100
-VERSION_NAME=1.1.1-SNAPSHOT
+VERSION_CODE=1020099
+VERSION_NAME=1.2.0
GROUP_ID=com.google.android.mobly
ARTIFACT_ID=mobly-snippet-lib