0.2.2 PiperOrigin-RevId: 602241703
diff --git a/CHANGELOG.md b/CHANGELOG.md index b50828a..6732ec5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md
@@ -1,3 +1,6 @@ +0.2.2 +- Support running Google Home App of version `3.13.46.1`. + 0.2.1 - Support running Google Home App of version `3.12.4.1`.
diff --git a/README.md b/README.md index 5116c09..d86c39f 100644 --- a/README.md +++ b/README.md
@@ -21,7 +21,7 @@ 1. You need to install Google Home App on your Android phone. 1. Login to your Google Home App. 1. Make sure the Google Home App's version is between `3.1.1.14` and - `3.10.1.6`(latest public version). Or `3.12.4.1`. + `3.10.1.6`(latest public version). Or `3.12.4.1`, `3.13.46.1`. NOTE: Please select the correct Google account on Google Home App.
diff --git a/ui_automator/android/app/snippet-0.2.2-rc.1.apk b/ui_automator/android/app/snippet-0.2.2.apk similarity index 99% rename from ui_automator/android/app/snippet-0.2.2-rc.1.apk rename to ui_automator/android/app/snippet-0.2.2.apk index 7b3a309..ca76650 100644 --- a/ui_automator/android/app/snippet-0.2.2-rc.1.apk +++ b/ui_automator/android/app/snippet-0.2.2.apk Binary files differ
diff --git a/ui_automator/ui_automator.py b/ui_automator/ui_automator.py index 181e8ed..96801a9 100644 --- a/ui_automator/ui_automator.py +++ b/ui_automator/ui_automator.py
@@ -407,7 +407,7 @@ os.path.dirname(os.path.abspath(__file__)), 'android', 'app', - 'snippet-0.2.2-rc.1.apk', + 'snippet-0.2.2.apk', ) def _add_test_to_commission_test_suite(
diff --git a/ui_automator/ui_automator_test.py b/ui_automator/ui_automator_test.py index fa0d1f7..7706d74 100644 --- a/ui_automator/ui_automator_test.py +++ b/ui_automator/ui_automator_test.py
@@ -211,7 +211,7 @@ self.ui_automator.load_snippet() self.mock_android_device.adb.install.assert_called_once_with( - ['-r', '-g', '/path/to/android/app/snippet-0.2.2-rc.1.apk'] + ['-r', '-g', '/path/to/android/app/snippet-0.2.2.apk'] ) self.mock_android_device.adb.uninstall.assert_not_called() mock_dirname.assert_called_once() @@ -256,7 +256,7 @@ 'com.chip.interop.moblysnippet' ) self.mock_android_device.adb.install.assert_called_once_with( - ['-r', '-g', '/path/to/android/app/snippet-0.2.2-rc.1.apk'] + ['-r', '-g', '/path/to/android/app/snippet-0.2.2.apk'] ) mock_dirname.assert_called_once() @@ -278,7 +278,7 @@ self.mock_android_device.adb.uninstall.assert_not_called() self.mock_android_device.adb.install.assert_called_once_with( - ['-r', '-g', '/path/to/android/app/snippet-0.2.2-rc.1.apk'] + ['-r', '-g', '/path/to/android/app/snippet-0.2.2.apk'] ) mock_dirname.assert_called_once()
diff --git a/ui_automator/version.py b/ui_automator/version.py index 289c1c2..9ead092 100644 --- a/ui_automator/version.py +++ b/ui_automator/version.py
@@ -17,6 +17,6 @@ from typing import Optional -_SEMANTIC_VERSION = "0.2.2-rc.1" +_SEMANTIC_VERSION = "0.2.2" VERSION = _SEMANTIC_VERSION