Snippet lib release v1.3.1
diff --git a/CHANGELOG b/CHANGELOG
index dbf7227..28dbac0 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,9 @@
+1.3.1:
+  - Migrate from android.support to androidx library
+  - Add a default close() method
+  - Support for long arrays as parameters
+  - 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 @@
 
     ```
     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 @@
     // 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 @@
 
     ```
     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 @@
     // 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 @@
 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 @@
     // 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 @@
 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 @@
     // 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