From d8ea9cf516baa36c27ec767ff2b44a46dcd7d979 Mon Sep 17 00:00:00 2001 From: Ray Slakinski Date: Sat, 19 Sep 2026 19:21:22 -0400 Subject: [PATCH] Do not track the generated Info.plist xcodegen writes it from project.yml on every generate, so keeping it in git gives the same facts two homes and a diff every time the yml changes. The .xcodeproj is ignored for exactly this reason. Co-Authored-By: Claude Opus 5 --- .gitignore | 3 +- ios/Resources/Info.plist | 62 ---------------------------------------- 2 files changed, 2 insertions(+), 63 deletions(-) delete mode 100644 ios/Resources/Info.plist diff --git a/.gitignore b/.gitignore index 7f4512f..de9cfd3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ -# Generated by xcodegen from project.yml. +# Generated by xcodegen from project.yml, which is the source of truth for both. *.xcodeproj/ +ios/Resources/Info.plist *.xcworkspace/ DerivedData/ build/ diff --git a/ios/Resources/Info.plist b/ios/Resources/Info.plist deleted file mode 100644 index a27c7f0..0000000 --- a/ios/Resources/Info.plist +++ /dev/null @@ -1,62 +0,0 @@ - - - - - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleDisplayName - iPodderX - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - APPL - CFBundleShortVersionString - 0.1.0 - CFBundleVersion - 1 - NSAppTransportSecurity - - NSAllowsLocalNetworking - - - UIApplicationSceneManifest - - UIApplicationSupportsMultipleScenes - - UISceneConfigurations - - UIWindowSceneSessionRoleApplication - - - UISceneConfigurationName - Default Configuration - UISceneDelegateClassName - $(PRODUCT_MODULE_NAME).SceneDelegate - - - - - UIBackgroundModes - - audio - - UILaunchScreen - - UIRequiresFullScreen - - UIStatusBarStyle - UIStatusBarStyleLightContent - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - -