Initial commit: suixinkan_ios UIKit rewrite project.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-26 14:33:31 +08:00
commit 9edf993432
297 changed files with 47151 additions and 0 deletions

20
Podfile Normal file
View File

@ -0,0 +1,20 @@
platform :ios, '16.0'
target 'suixinkan_ios' do
use_frameworks!
pod 'SnapKit', '~> 5.7'
pod 'Kingfisher', '~> 8.0'
target 'suixinkan_iosTests' do
inherit! :search_paths
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '16.0'
end
end
end