mirror of
https://github.com/Sunnyyoung/WeChatTweak-macOS.git
synced 2025-05-23 06:46:10 +08:00

1. Upgrade dependencies 2. Update project settings 3. Remvoe classic revoked message style
17 lines
366 B
Ruby
17 lines
366 B
Ruby
platform :osx, '10.12'
|
|
inhibit_all_warnings!
|
|
|
|
target 'WeChatTweak' do
|
|
pod 'JRSwizzle'
|
|
pod 'GCDWebServer'
|
|
end
|
|
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings.delete 'ARCHS'
|
|
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = 10.12
|
|
end
|
|
end
|
|
end
|