Post

Replies

Boosts

Views

Activity

Reply to App Store rejects binary built with with alternate app icons, ITMS-90895
Thank you! Yes, it's a bug in CocoaPods! With your suggestion, I was also able to fix the problem in my project. In case anyone else encounters the same issue, here's what fixed it for me in the Podfile. This fix modifies the resources file for the target to include the proper parameter. Be sure to replace instances of YOUR_TARGET with the actual target name, and double-check the resulting resources file in the filesystem to ensure it was correctly modified after running a pod install. post_install do |installer| # This bug has been reported to the cocoapods project developers here: # https://github.com/CocoaPods/CocoaPods/issues/12539 target_pods_resources_path = "Pods/Target Support Files/Pods-YOUR_TARGET/Pods-YOUR_TARGET-resources.sh" string_to_replace = '--compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"' assets_compile_with_app_icon_arguments = '--compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" --include-all-app-icons' text = File.read(target_pods_resources_path) new_contents = text.gsub(string_to_replace, assets_compile_with_app_icon_arguments) File.open(target_pods_resources_path, "w") {|file| file.puts new_contents } end end
Jul ’25
Reply to Codex integration just stopped working
Same here, the agent updated to Codex 0.132.0, but it still won't log in. My report FB22928011 says "Recent Similar Reports: More than 10". Sounds like Apple is waiting on a fix from OpenAI, I hope that arrives soon.
Replies
Boosts
Views
Activity
1d
Reply to Codex integration just stopped working
Hi, I'm having the exact same problem with the exact same symptoms. Nothing changed on my end; Codex agent just suddenly stopped working last night. Now, in Xcode 26.5, I cannot sign in to my OpenAI Pro plan with the Xcode Codex component, but I can sign in to OpenAI chat. I have logged a bug here: 22928011
Replies
Boosts
Views
Activity
2w
Reply to App Store rejects binary built with with alternate app icons, ITMS-90895
Thank you! Yes, it's a bug in CocoaPods! With your suggestion, I was also able to fix the problem in my project. In case anyone else encounters the same issue, here's what fixed it for me in the Podfile. This fix modifies the resources file for the target to include the proper parameter. Be sure to replace instances of YOUR_TARGET with the actual target name, and double-check the resulting resources file in the filesystem to ensure it was correctly modified after running a pod install. post_install do |installer| # This bug has been reported to the cocoapods project developers here: # https://github.com/CocoaPods/CocoaPods/issues/12539 target_pods_resources_path = "Pods/Target Support Files/Pods-YOUR_TARGET/Pods-YOUR_TARGET-resources.sh" string_to_replace = '--compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"' assets_compile_with_app_icon_arguments = '--compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" --include-all-app-icons' text = File.read(target_pods_resources_path) new_contents = text.gsub(string_to_replace, assets_compile_with_app_icon_arguments) File.open(target_pods_resources_path, "w") {|file| file.puts new_contents } end end
Replies
Boosts
Views
Activity
Jul ’25