Skip to content

Commit 5f093ae

Browse files
fix: iOS app crash due to missing CADisableMinimumFrameDurationOnPhone
Add required Info.plist entry for Compose Multiplatform iOS support. This key is strictly enforced since Compose Multiplatform 1.6.10 to ensure proper support for high refresh rate displays (120Hz). Without this key, the app crashes during initialization with: PlistSanityCheck.performIfNeeded throwing a Kotlin/Native exception. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 6c2a7ef commit 5f093ae

File tree

1 file changed

+2
-0
lines changed
  • kotlin-sdk/examples/chatapp/iosApp/iosApp

1 file changed

+2
-0
lines changed

kotlin-sdk/examples/chatapp/iosApp/iosApp/Info.plist

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,7 @@
6565
<key>NSAllowsArbitraryLoads</key>
6666
<true/>
6767
</dict>
68+
<key>CADisableMinimumFrameDurationOnPhone</key>
69+
<true/>
6870
</dict>
6971
</plist>

0 commit comments

Comments
 (0)