1.0.1
PiperOrigin-RevId: 608231231
diff --git a/ui_automator/android/app/snippet-1.0.0.apk b/ui_automator/android/app/snippet-1.0.1.apk
similarity index 100%
rename from ui_automator/android/app/snippet-1.0.0.apk
rename to ui_automator/android/app/snippet-1.0.1.apk
Binary files differ
diff --git a/ui_automator/ui_automator.py b/ui_automator/ui_automator.py
index 5573e4d..aa28020 100644
--- a/ui_automator/ui_automator.py
+++ b/ui_automator/ui_automator.py
@@ -447,7 +447,7 @@
os.path.dirname(os.path.abspath(__file__)),
'android',
'app',
- 'snippet-1.0.0.apk',
+ 'snippet-1.0.1.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 cc25767..c7c2e3c 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-1.0.0.apk']
+ ['-r', '-g', '/path/to/android/app/snippet-1.0.1.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-1.0.0.apk']
+ ['-r', '-g', '/path/to/android/app/snippet-1.0.1.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-1.0.0.apk']
+ ['-r', '-g', '/path/to/android/app/snippet-1.0.1.apk']
)
mock_dirname.assert_called_once()
diff --git a/ui_automator/version.py b/ui_automator/version.py
index 0b8ebb1..cf5967f 100644
--- a/ui_automator/version.py
+++ b/ui_automator/version.py
@@ -17,6 +17,6 @@
from typing import Optional
-_SEMANTIC_VERSION = "1.0.0"
+_SEMANTIC_VERSION = "1.0.1"
VERSION = _SEMANTIC_VERSION