diff --git a/README.md b/README.md
index 20f26c3..543bafb 100644
--- a/README.md
+++ b/README.md
@@ -18,6 +18,29 @@ dart pub add intelligence
To add support for AppIntents framework, you will have to perform one-time setup which differs for different use-cases. See [Recipes](#recipes) for more details.
+### iOS Configuration
+After installing the package, you need to set the minimum iOS version to 16.0 on XCode.
+
+For more details, follow these steps:
+
+
+
+- Open the iOS project in Xcode
+
+
+
+
+- Click on Runner & then general tab
+
+ ![Runner & general tab](/doc/assets/readme/runner_general_xcode.png)
+
+- Under the General tab & minimum deployments section, set the iOS version to atleast 16.0
+ ![iOS version](/doc/assets/readme/ios_version.png)
+
+
+
+
+
Once set up, the plugin will let you act on each App Intent trigger.
E.g. while setting the selection listener in a Stateful widget:
diff --git a/doc/assets/readme/ios_version.png b/doc/assets/readme/ios_version.png
new file mode 100644
index 0000000..d42a52c
Binary files /dev/null and b/doc/assets/readme/ios_version.png differ
diff --git a/doc/assets/readme/runner_general_xcode.png b/doc/assets/readme/runner_general_xcode.png
new file mode 100644
index 0000000..b775a7a
Binary files /dev/null and b/doc/assets/readme/runner_general_xcode.png differ