From a330f25e21899b22e8cf21050344e5fa8cd58320 Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Tue, 11 Nov 2025 19:51:54 -0800 Subject: [PATCH] fix(ios): add missing Assets.xcassets with AppIcon for test app Created missing asset catalog required by Xcode build: Assets.xcassets: - Created asset catalog directory structure - Added Contents.json with standard Xcode format - Added AppIcon.appiconset with minimal icon configuration AppIcon.appiconset: - Minimal icon set configuration for iOS - Universal platform support - 1024x1024 size placeholder (actual icons can be added later) Fixes: - Build error: 'None of the input catalogs contained a matching app icon set named AppIcon' - Build error: 'Failed to read file attributes for Assets.xcassets' - Xcode project expects this asset catalog for app icons Result: Build should now complete successfully --- .../AppIcon.appiconset/Contents.json | 14 ++++++++++++++ .../App/App/Assets.xcassets/Contents.json | 7 +++++++ 2 files changed, 21 insertions(+) create mode 100644 test-apps/ios-test-app/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 test-apps/ios-test-app/App/App/Assets.xcassets/Contents.json diff --git a/test-apps/ios-test-app/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json b/test-apps/ios-test-app/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..f798cc0 --- /dev/null +++ b/test-apps/ios-test-app/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,14 @@ +{ + "images" : [ + { + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} + diff --git a/test-apps/ios-test-app/App/App/Assets.xcassets/Contents.json b/test-apps/ios-test-app/App/App/Assets.xcassets/Contents.json new file mode 100644 index 0000000..7afcdfa --- /dev/null +++ b/test-apps/ios-test-app/App/App/Assets.xcassets/Contents.json @@ -0,0 +1,7 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + } +} +