Initial commit

This commit is contained in:
2025-11-10 15:56:27 -07:00
commit f04db3722f
372 changed files with 39900 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
# Uncomment the next line to define a global platform for your project
target 'berry-dash-ultimate_iOS' do
platform :ios, '14.0'
# Pods for berry-dash-ultimate_iOS
end
target 'berry-dash-ultimate_macOS' do
platform :osx, '11.0'
# Pods for berry-dash-ultimate_macOS
end
# Delete the deployment target for iOS and macOS, causing it to be inherited from the Podfile
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
config.build_settings.delete 'MACOSX_DEPLOYMENT_TARGET'
end
end
end