1.0.3

PiperOrigin-RevId: 670387614
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3b81f09..b431209 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+1.0.3
+- Support automation for new Google Home App UI.
+- Support version of Google Home App from `3.1.1.14` to `3.22.1.4`.
+
 1.0.2
 - Align with public version.
 - Support running Google Home App of version from `3.1.1.14` to `3.19.1.3`.
diff --git a/README.md b/README.md
index 27887d8..c3663ab 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,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.19.1.3`.
+1.  Make sure the Google Home App's version is between `3.1.1.14` and `3.22.1.4`.
 
 NOTE: Please select the correct Google account on Google Home App.
 
diff --git a/ui_automator/android/app/snippet-1.0.3-rc.1.apk b/ui_automator/android/app/snippet-1.0.3.apk
similarity index 99%
rename from ui_automator/android/app/snippet-1.0.3-rc.1.apk
rename to ui_automator/android/app/snippet-1.0.3.apk
index 6959429..666b0ab 100644
--- a/ui_automator/android/app/snippet-1.0.3-rc.1.apk
+++ b/ui_automator/android/app/snippet-1.0.3.apk
Binary files differ
diff --git a/ui_automator/ui_automator.py b/ui_automator/ui_automator.py
index 034c531..56a6439 100644
--- a/ui_automator/ui_automator.py
+++ b/ui_automator/ui_automator.py
@@ -469,7 +469,7 @@
         os.path.dirname(os.path.abspath(__file__)),
         'android',
         'app',
-        'snippet-1.0.3-rc.1.apk',
+        'snippet-1.0.3.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 bf24764..0cdc2e5 100644
--- a/ui_automator/ui_automator_test.py
+++ b/ui_automator/ui_automator_test.py
@@ -82,7 +82,7 @@
     '--commission',
 ]
 _FAKE_PROJECT_FOLDER = '/path/to/'
-_EXPECTED_APK_PATH = f'{_FAKE_PROJECT_FOLDER}android/app/snippet-1.0.3-rc.1.apk'
+_EXPECTED_APK_PATH = f'{_FAKE_PROJECT_FOLDER}android/app/snippet-1.0.3.apk'
 
 
 class UIAutomatorTest(unittest.TestCase):
diff --git a/ui_automator/version.py b/ui_automator/version.py
index 8df3323..d2a4a73 100644
--- a/ui_automator/version.py
+++ b/ui_automator/version.py
@@ -17,6 +17,6 @@
 from typing import Optional
 
 
-_SEMANTIC_VERSION = "1.0.3-rc.1"
+_SEMANTIC_VERSION = "1.0.3"
 
 VERSION = _SEMANTIC_VERSION