
- 在swift-assistant-style.mdc中更新上下文信息,简化描述并保留关键信息。 - 在swift-swiftui-dev-rules.mdc中将alwaysApply设置为false,调整开发规则。 - 在Info.plist中移除冗余的CFBundleDisplayName和CFBundleName键,保持文件整洁。 - 在FeedFeature.swift中添加调试日志,增强API响应的可追踪性。 - 在HomeFeature.swift中新增Feed状态和相关actions,优化状态管理。 - 在FeedView.swift中直接使用store状态,提升组件性能和可读性。 - 在HomeView.swift中更新FeedView的store传递方式,确保状态一致性。 - 更新Xcode项目配置,调整代码签名和Swift版本,确保兼容性。
18 lines
477 B
Plaintext
18 lines
477 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>NSAppTransportSecurity</key>
|
|
<dict>
|
|
<key>NSAllowsArbitraryLoads</key>
|
|
<true/>
|
|
</dict>
|
|
<key>NSWiFiUsageDescription</key>
|
|
<string>应用需要访问 Wi-Fi 信息以提供网络相关功能</string>
|
|
<key>UIAppFonts</key>
|
|
<array>
|
|
<string>Bayon-Regular.ttf</string>
|
|
</array>
|
|
</dict>
|
|
</plist>
|