0.2.0-rc.1 PiperOrigin-RevId: 581811143
diff --git a/ui_automator/android/app/snippet-0.2.0-rc.0.apk b/ui_automator/android/app/snippet-0.2.0-rc.1.apk similarity index 98% rename from ui_automator/android/app/snippet-0.2.0-rc.0.apk rename to ui_automator/android/app/snippet-0.2.0-rc.1.apk index 9f42e6f..f45d542 100644 --- a/ui_automator/android/app/snippet-0.2.0-rc.0.apk +++ b/ui_automator/android/app/snippet-0.2.0-rc.1.apk Binary files differ
diff --git a/ui_automator/ui_automator.py b/ui_automator/ui_automator.py index 10f6fac..f7944b0 100644 --- a/ui_automator/ui_automator.py +++ b/ui_automator/ui_automator.py
@@ -298,7 +298,7 @@ os.path.dirname(os.path.abspath(__file__)), 'android', 'app', - 'snippet-0.2.0-rc.0.apk', + 'snippet-0.2.0-rc.1.apk', )
diff --git a/ui_automator/ui_automator_test.py b/ui_automator/ui_automator_test.py index 66eba17..d4dc6f7 100644 --- a/ui_automator/ui_automator_test.py +++ b/ui_automator/ui_automator_test.py
@@ -190,7 +190,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.0-rc.0.apk'] + ['-r', '-g', '/path/to/android/app/snippet-0.2.0-rc.1.apk'] ) self.mock_android_device.adb.uninstall.assert_not_called() mock_dirname.assert_called_once() @@ -235,7 +235,7 @@ 'com.chip.interop.moblysnippet' ) self.mock_android_device.adb.install.assert_called_once_with( - ['-r', '-g', '/path/to/android/app/snippet-0.2.0-rc.0.apk'] + ['-r', '-g', '/path/to/android/app/snippet-0.2.0-rc.1.apk'] ) mock_dirname.assert_called_once() @@ -257,7 +257,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.0-rc.0.apk'] + ['-r', '-g', '/path/to/android/app/snippet-0.2.0-rc.1.apk'] ) mock_dirname.assert_called_once()
diff --git a/ui_automator/version.py b/ui_automator/version.py index 04b2afa..07c8e12 100644 --- a/ui_automator/version.py +++ b/ui_automator/version.py
@@ -17,6 +17,6 @@ from typing import Optional -_SEMANTIC_VERSION = "0.2.0-rc.0" +_SEMANTIC_VERSION = "0.2.0-rc.1" VERSION = _SEMANTIC_VERSION