aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew <matty3@users.noreply.github.com>2018-03-24 13:40:12 -0400
committerGitHub <noreply@github.com>2018-03-24 13:40:12 -0400
commit035c2b1332743d8d7c6a9087ab69d5bcef3cd5bb (patch)
tree279325c1a8fcd75a8567b0abb4212f35ca163180
parent1567f0b07456b68c5de24476d547292caa071128 (diff)
downloadmobly-snippet-lib-035c2b1332743d8d7c6a9087ab69d5bcef3cd5bb.tar.gz
Snippet lib release v1.3.0. (#92)
Snippet lib release v1.3.0.
-rw-r--r--CHANGELOG6
-rw-r--r--examples/ex1_standalone_app/README.md2
-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--examples/ex5_schedule_rpc/build.gradle2
-rw-r--r--examples/ex6_complex_type_conversion/build.gradle2
-rw-r--r--third_party/sl4a/gradle.properties4
9 files changed, 15 insertions, 9 deletions
diff --git a/CHANGELOG b/CHANGELOG
index e8b1eb6..dbf7227 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,9 @@
+1.3.0:
+ - Support for RPC scheduling
+ - Support for custom converters of non-primitive types
+ - Support for JSONArray parsing of parameters
+ - Various minor fixes and cleanups
+
1.2.0:
- New startup protocol:
- Snippet protocol is now versionated and reported to instrumentation output
diff --git a/examples/ex1_standalone_app/README.md b/examples/ex1_standalone_app/README.md
index 428dd7d..a7ecaa8 100644
--- a/examples/ex1_standalone_app/README.md
+++ b/examples/ex1_standalone_app/README.md
@@ -12,7 +12,7 @@ a snippet app that controls (instruments) another app under test, please see
```
dependencies {
- compile 'com.google.android.mobly:mobly-snippet-lib:1.2.0'
+ implementation 'com.google.android.mobly:mobly-snippet-lib:1.3.0'
}
```
diff --git a/examples/ex2_espresso/README.md b/examples/ex2_espresso/README.md
index ba00469..03973d1 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.2.0'
+ snippetCompile 'com.google.android.mobly:mobly-snippet-lib:1.3.0'
}
```
diff --git a/examples/ex2_espresso/build.gradle b/examples/ex2_espresso/build.gradle
index 2757808..1cf1745 100644
--- a/examples/ex2_espresso/build.gradle
+++ b/examples/ex2_espresso/build.gradle
@@ -47,7 +47,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.2.0'
+ //snippetCompile 'com.google.android.mobly:mobly-snippet-lib:1.3.0'
snippetImplementation project(':mobly-snippet-lib')
snippetImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
diff --git a/examples/ex3_async_event/build.gradle b/examples/ex3_async_event/build.gradle
index 4fb63f9..b463565 100644
--- a/examples/ex3_async_event/build.gradle
+++ b/examples/ex3_async_event/build.gradle
@@ -21,6 +21,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.2.0'
+ // compile 'com.google.android.mobly:mobly-snippet-lib:1.3.0'
implementation project(':mobly-snippet-lib')
}
diff --git a/examples/ex4_uiautomator/build.gradle b/examples/ex4_uiautomator/build.gradle
index 1d89fdf..8a7ebb4 100644
--- a/examples/ex4_uiautomator/build.gradle
+++ b/examples/ex4_uiautomator/build.gradle
@@ -22,7 +22,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.2.0'
+ //compile 'com.google.android.mobly:mobly-snippet-lib:1.3.0'
implementation project(':mobly-snippet-lib')
implementation 'junit:junit:4.12'
implementation 'com.android.support.test:runner:1.0.1'
diff --git a/examples/ex5_schedule_rpc/build.gradle b/examples/ex5_schedule_rpc/build.gradle
index 53cd5a0..905632a 100644
--- a/examples/ex5_schedule_rpc/build.gradle
+++ b/examples/ex5_schedule_rpc/build.gradle
@@ -21,7 +21,7 @@ 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.3.0'
implementation project(':mobly-snippet-lib')
implementation 'com.android.support.test:runner:1.0.1'
}
diff --git a/examples/ex6_complex_type_conversion/build.gradle b/examples/ex6_complex_type_conversion/build.gradle
index 40d45bc..f0c2ae7 100644
--- a/examples/ex6_complex_type_conversion/build.gradle
+++ b/examples/ex6_complex_type_conversion/build.gradle
@@ -22,6 +22,6 @@ 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.2.0'
+ //implementation 'com.google.android.mobly:mobly-snippet-lib:1.3.0'
implementation project(':mobly-snippet-lib')
}
diff --git a/third_party/sl4a/gradle.properties b/third_party/sl4a/gradle.properties
index 1146440..6775969 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=1030000
-VERSION_NAME=1.3
+VERSION_CODE=1030099
+VERSION_NAME=1.3.0
GROUP_ID=com.google.android.mobly
ARTIFACT_ID=mobly-snippet-lib