Has anyone experienced this issue? <https://youtra...
# multiplatform
a
Has anyone experienced this issue? https://youtrack.jetbrains.com/issue/KT-74841/Unable-to-set-MinimumOSVersion-in-Info.plist-for-a-framework
Copy code
Asset validation failed
Invalid Bundle. 
The bundle MyApp Test.app/Frameworks/ComposeApp.framework 
does not support the minimum OS Version specified in the 
Info.plist. (ID: 166b8704-377a-489a-9d9e-573d63a4ecf0)
It occurs when attempting to upload the app to TestFlight
I’ve figured it out, and fixed it by adding the next line:
Copy code
freeCompilerArgs += listOf("-Xoverride-konan-properties=osVersionMin.ios_simulator_arm64=15.6;osVersionMin.ios_arm64=15.6;osVersionMin.ios_x64=15.6")
I hope, this will help someone.