aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxianyuanjia <56282287+xianyuanjia@users.noreply.github.com>2021-10-19 21:29:57 -0400
committerGitHub <noreply@github.com>2021-10-19 21:29:57 -0400
commita333857db23a5d7f003fa38635b866eff311e2ae (patch)
tree9840eb03422da4c1170bc9d2f3df37635c713cd6
parent5f22e1643fc7f188d1e79ba4d3d51ed737683540 (diff)
parentbdb22458326155c291437539ab819d9c1cac2644 (diff)
downloadmobly-snippet-lib-a333857db23a5d7f003fa38635b866eff311e2ae.tar.gz
Snippet lib release v1.3.1
-rw-r--r--CHANGELOG7
-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--examples/ex5_schedule_rpc/build.gradle2
-rw-r--r--examples/ex6_complex_type_conversion/build.gradle2
-rw-r--r--third_party/sl4a/gradle.properties4
10 files changed, 17 insertions, 10 deletions
diff --git a/CHANGELOG b/CHANGELOG
index dbf7227..489a2f1 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,10 @@
+1.3.1:
+ - Migrate from android.support to androidx library
+ - Add a default close() method
+ - Support for long arrays as parameters
+ - Use newer Notification methods for Android O and above
+ - Various minor fixes
+
1.3.0:
- Support for RPC scheduling
- Support for custom converters of non-primitive types
diff --git a/examples/ex1_standalone_app/README.md b/examples/ex1_standalone_app/README.md
index d62f9fc..5d68e34 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 {
- implementation 'com.google.android.mobly:mobly-snippet-lib:1.3.0'
+ implementation 'com.google.android.mobly:mobly-snippet-lib:1.3.1'
}
```
diff --git a/examples/ex1_standalone_app/build.gradle b/examples/ex1_standalone_app/build.gradle
index 6dc66e3..ee60dc1 100644
--- a/examples/ex1_standalone_app/build.gradle
+++ b/examples/ex1_standalone_app/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.3.0'
+ //implementation 'com.google.android.mobly:mobly-snippet-lib:1.3.1'
implementation project(':mobly-snippet-lib')
}
diff --git a/examples/ex2_espresso/README.md b/examples/ex2_espresso/README.md
index b43507a..c9422a5 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.3.0'
+ snippetCompile 'com.google.android.mobly:mobly-snippet-lib:1.3.1'
}
```
diff --git a/examples/ex2_espresso/build.gradle b/examples/ex2_espresso/build.gradle
index e94c7f7..4479e1b 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.3.0'
+ //snippetCompile 'com.google.android.mobly:mobly-snippet-lib:1.3.1'
snippetImplementation project(':mobly-snippet-lib')
snippetImplementation 'androidx.annotation:annotation:1.2.0'
diff --git a/examples/ex3_async_event/build.gradle b/examples/ex3_async_event/build.gradle
index 0b82e23..7327fc4 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.3.0'
+ // compile 'com.google.android.mobly:mobly-snippet-lib:1.3.1'
implementation project(':mobly-snippet-lib')
}
diff --git a/examples/ex4_uiautomator/build.gradle b/examples/ex4_uiautomator/build.gradle
index 028d580..b071e1b 100644
--- a/examples/ex4_uiautomator/build.gradle
+++ b/examples/ex4_uiautomator/build.gradle
@@ -23,7 +23,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.3.0'
+ //compile 'com.google.android.mobly:mobly-snippet-lib:1.3.1'
implementation project(':mobly-snippet-lib')
implementation 'junit:junit:4.13.2'
implementation 'androidx.test:runner:1.4.0'
diff --git a/examples/ex5_schedule_rpc/build.gradle b/examples/ex5_schedule_rpc/build.gradle
index e948355..f5aa15c 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.3.0'
+ // compile 'com.google.android.mobly:mobly-snippet-lib:1.3.1'
implementation project(':mobly-snippet-lib')
implementation 'androidx.test:runner:1.4.0'
}
diff --git a/examples/ex6_complex_type_conversion/build.gradle b/examples/ex6_complex_type_conversion/build.gradle
index 45110b2..b6039b0 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.3.0'
+ //implementation 'com.google.android.mobly:mobly-snippet-lib:1.3.1'
implementation project(':mobly-snippet-lib')
}
diff --git a/third_party/sl4a/gradle.properties b/third_party/sl4a/gradle.properties
index 6775969..86f8068 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=1030099
-VERSION_NAME=1.3.0
+VERSION_CODE=1030199
+VERSION_NAME=1.3.1
GROUP_ID=com.google.android.mobly
ARTIFACT_ID=mobly-snippet-lib